IStack Interface

Represents type IStack.

Namespace: Spring.Collections
type
 IStack = interface(IEnumerable)
 ['{82F7B40F-3B32-417F-8001-51458BCE553A}']
 end;

The IStack 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.

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.

Pop

Represents method Pop.

Push(TValue)

Represents method Push(TValue).

TryPeek(TValue)

Represents method TryPeek(TValue).

TryPop(TValue)

Represents method TryPop(TValue).

Top