TRSDictionary.TKeyEnumerator is the enumerator class for the keys in the dictionary.
TRSDictionary.TKeyEnumerator is the class that implements enumerating functionality to the collection of keys in the dictionary.
RSGenerics.Collections.TRSDictionary<TKey,TValue>.TKeyEnumerator.MoveNext focuses on the next key in the collection. Also, RSGenerics.Collections.TRSDictionary<TKey,TValue>.TKeyEnumerator.Current stores the key that is currently focused.
Namespace: RSGenerics.Collections
TEnumerator
RSGenerics.Collections.TRSDictionary<TKey,TValue>.TKeyEnumerator
|
Delphi
|
public
type
TKeyEnumerator = class(TEnumerator<TKey>)
end;
|
|
Name
|
Description
|
|
Create(TRSDictionary<TKey,TValue>)
|
Creates an instance of TRSDictionary.TKeyEnumerator.
Call Create to create an instance of the TRSDictionary.TKeyEnumerator class.
|
Top
|
|
Name
|
Description
|
|
Current
|
Returns the currently focused key in the key collection.
Current is a read-only property that gives the currently focused key in the key collection.
|
Top
|
|
Name
|
Description
|
|
DoGetCurrent
|
Represents method DoGetCurrent.
|
|
DoMoveNext
|
Represents method DoMoveNext.
|
|
MoveNext
|
Moves to the next key in the key collection.
Call MoveNext to move to the next key in the key collection.
MoveNext returns True if moving to the next key in the collection succeeded, or False otherwise.
|
Top
|