IQueue Interface

Represents type IQueue.

Namespace: Spring.Collections
type
 IQueue = interface(IEnumerable)
 ['{B3377E32-ADA1-414F-8762-1EA0E4FEF794}']
 end;

The IQueue type exposes the following members.

Show:
 NameDescription
Count

Returns the number of elements in a sequence. (Inherited from IEnumerable.)

ElementType

Returns the type of the elements in the sequence. (Inherited from IEnumerable.)

IsEmpty

Determines whether the sequence contains no elements. (Inherited from IEnumerable.)

OnChanged

Represents property OnChanged.

Top
Show:
 NameDescription
AsObject

Returns the reference to this instance. (Inherited from IEnumerable.)

Clear

Represents method Clear.

Dequeue

Represents method Dequeue.

Enqueue(TValue)

Represents method Enqueue(TValue).

GetCount

Represents method GetCount. (Inherited from IEnumerable.)

GetElementType

Represents method GetElementType. (Inherited from IEnumerable.)

GetEnumerator

Returns an enumerator that iterates through a collection. (Inherited from IEnumerable.)

GetIsEmpty

Represents method GetIsEmpty. (Inherited from IEnumerable.)

GetOnChanged

Represents method GetOnChanged.

Peek

Represents method Peek.

PeekOrDefault

Represents method PeekOrDefault.

TryDequeue(TValue)

Represents method TryDequeue(TValue).

TryPeek(TValue)

Represents method TryPeek(TValue).

Top