IStack<TValue, TCont> Interface
.NET Framework (current version)
Defines the interface of an STL/CLR stack object.
Assembly: Microsoft.VisualC.STLCLR (in Microsoft.VisualC.STLCLR.dll)
| Name | Description | |
|---|---|---|
![]() | top_item | Accesses the last element of the container. |
| Name | Description | |
|---|---|---|
![]() | assign(IStack<TValue, TCont>^) | Replaces all elements in the container with the elements in the provided container. |
![]() | Clone() | Creates a new object that is a copy of the current instance.(Inherited from ICloneable.) |
![]() | empty() | Determines whether the container contains no elements. |
![]() | get_container() | Accesses the underlying container. |
![]() | pop() | Removes the last element of the container. |
![]() | push(TValue) | Appends an element to the container. |
![]() | size() | Counts the number of elements in the container. |
![]() | top() | Accesses the last element of the container. |
.NET Framework
Available since 3.5
Available since 3.5
Show:

