Files
book/redirects/iterators.md
2018-12-07 07:19:03 -08:00

701 B

% Iterators

There is a new edition of the book and this is an old link.

The iterator pattern allows you to perform some task on a sequence of items in turn. An iterator is responsible for the logic of iterating over each item and determining when the sequence has finished.

let v1 = vec![1, 2, 3];

let v1_iter = v1.iter();

for val in v1_iter {
    println!("Got: {}", val);
}

Here are the relevant sections in the new and old books: