Rust iterators

From wikinotes
Revision as of 18:37, 9 February 2023 by Will (talk | contribs) (Created page with "Iterators are lazily evaluated sequences of items.<br> Like python generators, ruby enumerators, etc. = Example = <blockquote> <syntaxhighlight lang="rust"> </syntaxhighlight> </blockquote><!-- Example -->")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Iterators are lazily evaluated sequences of items.
Like python generators, ruby enumerators, etc.

Example