IIterator<T>
type
IIterator<T> = interface(IInterface)
function EOF: Boolean;
procedure Next;
function Value: T;
function GetNextValue(
var Value: T): Boolean;
function GetEnumerator: enumerator of T;
function GetAsIterator: IIterator;
property AsIterator: IIterator read;
end;
Ancestor: IInterface.
Defined in: DSGenUtil
⏱ Last Modified: Mon 3:43:39 pm