System.Generics.Collections.TEnumerator

Delphi
TEnumerator<T> = class abstract
C++
template<typename T> class PASCALIMPLEMENTATION TEnumerator__1 : public System::TObject
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | System.Generics.Collections.pas System.Generics.Collections.hpp |
System.Generics.Collections | System.Generics.Collections |
Description
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.