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