You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am learning rust and I find every single line of code is explained properly. Great job! unfortunately was going through chapter 3.5 "Looping Through a Collection with for" section. The iter() method is not explained.
This is just to maintain consistency in quality of the rust docs :)
The text was updated successfully, but these errors were encountered:
There is an entire chapter that deals with iterators that follows (Chapter 13).
Chapter 3.5 just has a short example of how to iterate through the array. The chapter's focus is not iterators.
I think it should either be left as-is, or a short note can be added that says something like "we'll take a closer look at iterators in Chapter 13".
(Yes, and this is part of the reason it wasn't explained; I didn't want to do a bunch here when it would eventually be unneeded, and most people seemed to intuitively get what was going on.)
I am learning rust and I find every single line of code is explained properly. Great job! unfortunately was going through chapter 3.5 "Looping Through a Collection with for" section. The
iter()
method is not explained.This is just to maintain consistency in quality of the rust docs :)
The text was updated successfully, but these errors were encountered: