std.collections.List.Iterator - nitrologic/monkey2 GitHub Wiki
std::std.collections.std.collections.List.Iterator
Struct 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. |