Enhanced C#
Language of your choice: library documentation
|
A mutable enumerator interface. Provides a "Remove" method like Java iterators have, and allows you to modify the current item. More...
A mutable enumerator interface. Provides a "Remove" method like Java iterators have, and allows you to modify the current item.
Please note, not all collections will support "Remove".
Properties | |
new T | Current [get, set] |
Gets or sets the value of the current item. More... | |
Public Member Functions | |
bool | Remove () |
Removes the current item and moves to the next one. Remember NOT to call MoveNext() immediately after Remove(). More... | |
bool Loyc.Collections.IMEnumerator< T >.Remove | ( | ) |
Removes the current item and moves to the next one. Remember NOT to call MoveNext() immediately after Remove().
NotSupportedException | The collection does not permit this operation. |
|
getset |
Gets or sets the value of the current item.