Enumerator class for TObjectList<T> that can be used as base class for implementing IXXXIterator interfaces from CommonInterfaces.pas
Namespace: RSGenerics.Collections
TInterfacedObject
RSGenerics.Collections.TRSObjectListEnumerator<T>
|
Delphi
|
type
TRSObjectListEnumerator<T: class> = class(TInterfacedObject)
end;
|
Type Parameters
T
|
Name
|
Description
|
|
Create(TObjectList)
|
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
|