Enhanced C#
Language of your choice: library documentation
|
Represents a FIFO (first-in-first-out) queue (or a priority queue if IPriorityQueue<ThisAssembly> is also implemented). More...
Represents a FIFO (first-in-first-out) queue (or a priority queue if IPriorityQueue<ThisAssembly> is also implemented).
T | Type of each element |
Additional Inherited Members | |
Properties inherited from Loyc.Collections.IPop< T > | |
bool | IsEmpty [get] |
Properties inherited from Loyc.Collections.ICount | |
int | Count [get] |
Gets the number of items in the collection. More... | |
Properties inherited from Loyc.Collections.IIsEmpty | |
bool | IsEmpty [get] |
Public Member Functions inherited from Loyc.Collections.IPush< T > | |
void | Push (T item) |
Public Member Functions inherited from Loyc.Collections.IPop< T > | |
T | TryPop (out bool isEmpty) |
T | TryPeek (out bool isEmpty) |