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