almost done with ch13.3

This commit is contained in:
2025-02-24 15:35:01 -07:00
parent ef22125714
commit ba2884744b
4 changed files with 267 additions and 24 deletions

View File

@ -12,7 +12,7 @@ It will discuss some features of Rust that are similar to features in many langu
It will cover:
- [*Closures*](./Closures.md) - a function-like construct you can store in a variable
- [*Iterators*](./Iterators.md) - a way of processing a series of elements
- How to use colsure and iterators to improve the I/O project (minigrep)
- How to use colsure and iterators to [improve the I/O project (minigrep)](./Improving%20The%20IO%20Project.md)
- The preformance of closures and iterators (Spoiler alert: they are faster than you might think!)
We have already covered some other Rust freatures, such as pattern matchin and enums, that are also influenced by the functional style.