Enumerator class for TList<T> that can be used as base class for implementing IXXXIterator interfaces from CommonInterfaces.pas
Namespace: RSGenerics.Collections
Delphi
|
type
TRSListEnumerator<T> = class(TInterfacedObject)
end;
|
Type Parameters
T
|
Name
|
Description
|
|
Create(TList)
|
Creates the iterator and initializes it to iterate over the input AList.
|
Top
|
|
Name
|
Description
|
|
Count
|
Returns the number of items left in the enumeration.
|
|
Current
|
Returns the current item in the iterator
|
Top
|
|
Name
|
Description
|
|
FIndex
|
Represents field FIndex.
|
|
FList
|
Represents field FList.
|
Top
|