IImmutableStack<T>.Push(T) Method

Definition

Inserts an element at the top of the immutable stack and returns the new stack.

public:
 System::Collections::Immutable::IImmutableStack<T> ^ Push(T value);
public System.Collections.Immutable.IImmutableStack<T> Push (T value);
abstract member Push : 'T -> System.Collections.Immutable.IImmutableStack<'T>
Public Function Push (value As T) As IImmutableStack(Of T)

Parameters

value
T

The element to push onto the stack.

Returns

The new stack.

Applies to