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

A random-access range, also known as a "slice". Allows you to narrow down the range like IBRange<T> does, and also provides random access via IListSource<T>. More...


Source file:
Inheritance diagram for Loyc.Collections.IRange< out out T >:
Loyc.Collections.IBRange< T > Loyc.Collections.IListSource< T >

Remarks

A random-access range, also known as a "slice". Allows you to narrow down the range like IBRange<T> does, and also provides random access via IListSource<T>.

Please see IFRange<T> for general documentation about ranges.

Additional Inherited Members

- Properties inherited from Loyc.Collections.IBRange< T >
Last [get]
 Returns the value of the last item in the range. More...
 
- Public Member Functions inherited from Loyc.Collections.IBRange< T >
PopLast (out bool fail)
 Removes the last item from the range and returns it. More...
 
- Public Member Functions inherited from Loyc.Collections.IListSource< T >
IRange< T > Slice (int start, int count=int.MaxValue)
 Returns a sub-range of this list. More...