Enhanced C#
Language of your choice: library documentation
|
A random-access range that can perform operations such as intersection and overlap tests on pairs of ranges of the same type. More...
A random-access range that can perform operations such as intersection and overlap tests on pairs of ranges of the same type.
R | : | IRangeEx | |
R | : | R | |
R | : | T | |
R | : | ICloneable<R> |
Additional Inherited Members | |
![]() | |
T | Back [get] |
Returns the value of the last item in the range. More... | |
![]() | |
T | Front [get] |
Returns the first value in the range, without popping it. More... | |
![]() | |
bool | IsEmpty [get] |
![]() | |
IEnumerable< T > | InnerList [get] |
Gets the list upon which this range is based. More... | |
int | SliceStart [get] |
Index where this range starts within the InnerList. More... | |
![]() | |
T | PopBack (out bool fail) |
Removes the last item from the range and returns it. More... | |
![]() | |
T | PopFront (out bool fail) |
Removes the first item from the range and returns it. More... | |
![]() | |
T | Clone () |
![]() | |
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... | |
![]() | |
R | Intersect (R other) |
Gets the region of overlap between two ranges. More... | |
R | Union (R other) |
Gets a range just large enough to contain both ranges. More... | |