Enhanced C#
Language of your choice: library documentation
List of all members
Loyc.Collections.INegDeque< T > Interface Template Reference

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...


Source file:
Inheritance diagram for Loyc.Collections.INegDeque< T >:
Loyc.Collections.INegArray< T > Loyc.Collections.IDeque< T > Loyc.Collections.INegListSource< T > Loyc.Collections.IIsEmpty Loyc.Collections.ICount Loyc.Collections.IIsEmpty

Remarks

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.

Template Parameters
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 >
First [get, set]
 Gets the first item in the deque. More...
 
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 ()