std:std.collections.List<T>.Iterator.Erase

Method Erase:Void( )

Safely erases the node referenced by the iterator.

After calling this method, the iterator will point to the node after the removed node.

Therefore, if you are manually iterating through a list you should not call Bump after calling this method or you will end up skipping a node.