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