TStack<T>.Push(T) Method

Inserts an element at the top of the stack.

Namespace: Spring.Collections.Stacks
public
 procedure Push(const item: T);

Parameters

item
Type: T

The element to push onto the stack. The value can be nil for reference types.

Implements

IStack<T>.Push(T)