IEnumerable Interface

Exposes an enumerator, which supports a simple iteration over a non-generic collection.

Namespace: Spring.Collections
type
 IEnumerable = interface(IInvokable)
 ['{6BC97F33-C0A8-4770-8E1C-C2017527B7E7}']
 end;

The IEnumerable type exposes the following members.

Show:
 NameDescription
Count

Returns the number of elements in a sequence.

ElementType

Returns the type of the elements in the sequence.

IsEmpty

Determines whether the sequence contains no elements.

Top
Show:
 NameDescription
AsObject

Returns the reference to this instance.

GetCount

Represents method GetCount.

GetElementType

Represents method GetElementType.

GetEnumerator

Returns an enumerator that iterates through a collection.

GetIsEmpty

Represents method GetIsEmpty.

Top