std:std.collections.List<T>.Iterator
The List.Iterator struct.
| Constructors | |
|---|---|
| New | Creates a new iterator. |
| Properties | |
|---|---|
| AtEnd | Checks whether the iterator has reached the end of the list. (read only) |
| Current | The value contained in the node pointed to by the iterator. |
| Methods | |
|---|---|
| Bump | Bumps the iterator so it points to the next node in the list. |
| Erase | Safely erases the node referenced by the iterator. |
| Insert | Safely insert a value before the iterator. |