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