System.Generics.Collections.TEnumerable
Delphi
TEnumerable<T> = class abstract
C++
template<typename T> class PASCALIMPLEMENTATION TEnumerable__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
TEnumerable is an abstract class inherited by all enumerable containers.
To give your container enumerating functionality, implement and extend the TEnumerable abstract class.
Implement the DoGetEnumerator protected method in order to obtain an instance of the container's enumerator.