Enhanced C#
Language of your choice: library documentation
|
Represents a Deque that supports negative indexes. In this kind of Deque, pushing and popping elements does not affect the indexes of the other elements in the collection. More...
Represents a Deque that supports negative indexes. In this kind of Deque, pushing and popping elements does not affect the indexes of the other elements in the collection.
T |
Additional Inherited Members | |
Properties inherited from Loyc.Collections.INegArray< T > | |
new T | this[int index] [get, set] |
Gets or sets an element of the array-like collection. More... | |
Properties inherited from Loyc.Collections.INegListSource< T > | |
int | Min [get] |
Returns the minimum valid index in the collection. More... | |
int | Max [get] |
Returns the maximum valid index in the collection. More... | |
Properties inherited from Loyc.Collections.IDeque< T > | |
T | First [get, set] |
Gets the first item in the deque. More... | |
T | Last [get, set] |
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.INegArray< T > | |
bool | TrySet (int index, T value) |
Public Member Functions inherited from Loyc.Collections.INegListSource< T > | |
IRange< T > | Slice (int start, int count=int.MaxValue) |
Returns a sub-range of this list. More... | |
Public Member Functions inherited from Loyc.Collections.IDeque< T > | |
void | PushFirst (T item) |
void | PushLast (T item) |
Maybe< T > | TryPopFirst () |
Maybe< T > | TryPeekFirst () |
Maybe< T > | TryPopLast () |
Maybe< T > | TryPeekLast () |