Enhanced C#
Language of your choice: library documentation

Documentation moved to ecsharp.net

GitHub doesn't support HTTP redirects, so you'll be redirected in 3 seconds.

 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
Properties | List of all members
Loyc.Collections.IMRange< T > Interface Template Reference

A mutable random-access range. More...


Source file:
Inheritance diagram for Loyc.Collections.IMRange< T >:
Loyc.Collections.IMBRange< T > Loyc.Collections.IRange< out T > Loyc.Collections.IBRange< out T > Loyc.Collections.IMFRange< T > Loyc.Collections.IBRange< out T > Loyc.Collections.IListSource< out T > Loyc.ICloneable< out T > Loyc.Collections.IFRange< out T > Loyc.ICloneable< out T > Loyc.Collections.IFRange< out T > Loyc.Collections.IFRange< out T > Loyc.ICloneable< out T > Loyc.Collections.IIsEmpty Loyc.ICloneable< out T > Loyc.Collections.IIsEmpty Loyc.ICloneable< out T > Loyc.Collections.IIsEmpty Loyc.ICloneable< out T > Loyc.Collections.ArraySlice< T >

Remarks

A mutable random-access range.

IMRange models a shrinkable array. You can modify elements or shrink the array, but not add anything new; this is a useful interface for some divide-and-conquer problems, such as the quick sort.

Please see IFRange{T} for general documentation about ranges.

Properties

new T this[int index] [get, set]
 
- Properties inherited from Loyc.Collections.IMBRange< T >
new T Back [get, set]
 Gets or sets the value of the last item in the range. More...
 
- Properties inherited from Loyc.Collections.IBRange< out T >
Back [get]
 Returns the value of the last item in the range. More...
 
- Properties inherited from Loyc.Collections.IFRange< out T >
Front [get]
 Returns the first value in the range, without popping it. More...
 
- Properties inherited from Loyc.Collections.IIsEmpty
bool IsEmpty [get]
 
- Properties inherited from Loyc.Collections.IMFRange< T >
new T Front [get, set]
 Gets or sets the value of the first item in the range. More...
 

Additional Inherited Members

- Public Member Functions inherited from Loyc.Collections.IBRange< out T >
PopBack (out bool fail)
 Removes the last item from the range and returns it. More...
 
- Public Member Functions inherited from Loyc.Collections.IFRange< out T >
PopFront (out bool fail)
 Removes the first item from the range and returns it. More...
 
- Public Member Functions inherited from Loyc.ICloneable< out T >
Clone ()
 
- Public Member Functions inherited from Loyc.Collections.IListSource< out T >
TryGet (int index, out bool fail)
 Gets the item at the specified index, and does not throw an exception on failure. More...
 
IRange< T > Slice (int start, int count=int.MaxValue)
 Returns a sub-range of this list. More...