Iterators
| Kind | Name | Description |
|---|---|---|
| Struct | Empty | An iterator that yields no values. |
| Trait | IntoIterator | Objects that can be turned into iterators. |
| Trait | Iterator | Objects that can be iterated over. |
| Trait | IteratorExt | Extensions for the |
| Struct | Map | An iterator that wraps another iterator and applies a function to every element before yielding it. |
| Struct | Repeat | An iterator that yields the same value indefinitely. |
| Name | Description |
|---|---|
| repeat | Returns an iterator which yields a value indefinitely. |