Enhanced C#
Loyc library documentation
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
List of all members
Loyc.Collections.IStack< T > Interface Template Reference

Represents a LIFO (last-in-first-out) stack. More...


Source file:
Inheritance diagram for Loyc.Collections.IStack< T >:
Loyc.Collections.IPush< in T > Loyc.Collections.ITryPop< out T > Loyc.Collections.ICount Loyc.Collections.IIsEmpty

Remarks

Represents a LIFO (last-in-first-out) stack.

Template Parameters
TType of each element

Additional Inherited Members

- Properties inherited from Loyc.Collections.IIsEmpty
bool IsEmpty [get]
 
- Properties inherited from Loyc.Collections.ICount
int Count [get]
 Gets the number of items in the collection. More...
 
- Public Member Functions inherited from Loyc.Collections.IPush< in T >
void Push (T item)
 
- Public Member Functions inherited from Loyc.Collections.ITryPop< out T >
TryPop (out bool isEmpty)
 
TryPeek (out bool isEmpty)