System.Generics.Collections.TOrderedDictionary.TKeyEnumerator
Delphi
TKeyEnumerator = class(TEnumerator<K>)
C++
class PASCALIMPLEMENTATION TKeyEnumerator : public TEnumerator__1<K>
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | System.Generics.Collections.pas System.Generics.Collections.hpp |
System.Generics.Collections | TOrderedDictionary |
Description
TEnumerator is the abstract class implemented by all enumerator classes.
System.Generics.Collections.TOrderedDictionary.TKeyEnumerator inherits from System.Generics.Collections.TEnumerator. All content below this line refers to System.Generics.Collections.TEnumerator.
TEnumerator is the abstract class implemented by all enumerator classes.
The members of TEnumerator provide the basic framework for enumerating a container.
MoveNext focuses on the next element in the container, with respect to some particular order. Also, Current stores the element that is currently focused.