Enhanced C#
Language of your choice: library documentation
|
Adapter: Provides access to a section of an array. More...
Adapter: Provides access to a section of an array.
Public fields | |
T[] | _list |
int | _start |
int | _count |
Properties | |
int | Count [get] |
bool | IsEmpty [get] |
T | Front [get, set] |
T | Back [get, set] |
T | this[int index] [get, set] |
T | this[int index, T defaultValue] [get] |
T[] | InternalList [get] |
Returns the original array. More... | |
int | InternalStart [get] |
int | InternalStop [get] |
Properties inherited from Loyc.Collections.IMRange< T > | |
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 > | |
T | Back [get] |
Returns the value of the last item in the range. More... | |
Properties inherited from Loyc.Collections.IFRange< out T > | |
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... | |
Public Member Functions | |
ArraySlice (T[] list, int start, int count) | |
Initializes an array slice. More... | |
ArraySlice (T[] list) | |
T | PopFront (out bool empty) |
Removes the first item from the range and returns it. More... | |
T | PopBack (out bool empty) |
Removes the last item from the range and returns it. More... | |
IFRange< T > ICloneable < IFRange< T > >. | Clone () |
IBRange< T > ICloneable < IBRange< T > >. | Clone () |
IRange< T > ICloneable< IRange < T > >. | Clone () |
ArraySlice< T > ICloneable < ArraySlice< T > >. | Clone () |
IEnumerator< T > IEnumerable< T >. | GetEnumerator () |
System.Collections.IEnumerator System.Collections.IEnumerable. | GetEnumerator () |
RangeEnumerator< ArraySlice< T > , T > | GetEnumerator () |
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 > IListSource< T >. | Slice (int start, int count) |
Returns a sub-range of this list. More... | |
ArraySlice< T > | Slice (int start, int count=int.MaxValue) |
Returns a sub-range of this list. More... | |
T[] | ToArray () |
Static Public Member Functions | |
static implicit | operator ArraySlice< T > (T[] array) |
|
inline |
Initializes an array slice.
ArgumentException | The start index was below zero. |
The (start, count) range is allowed to be invalid, as long as 'start' is zero or above.
list.Length - start
.
|
inline |
Removes the last item from the range and returns it.
fail | Receives the current value of IsEmpty. |
The remarks of IFRange{T}.PopFront apply to this method.
Implements Loyc.Collections.IBRange< out T >.
|
inline |
Removes the first item from the range and returns it.
fail | Receives the current value of IIsEmpty.IsEmpty. |
This method is a little unweildy in plain C#, but in EC# it will be a bit more convenient to use via extension methods like PopFirst(ref this Range range, T defaultValue)
and PopFirst(ref this Range range)
, which are illegal in plain C#.
I wanted to give this method the signature "bool PopFirst(out T first)" but the generic parameter "T" is covariant, i.e. it is marked "out T" which, ironically, is not compatible with "out T" parameters, only with return values.
Implements Loyc.Collections.IFRange< out T >.
|
inline |
Returns a sub-range of this list.
start | The new range will start at this index in the current list (this location will be index [0] in the new range). |
count | The desired number of elements in the new range, or int.MaxValue to get all elements until the end of the list. |
ArgumentException | The start index was below zero. |
The (start, count) range is allowed to be invalid, as long as start is zero or above.
this.Count - start
. Implementation note: do not compute (start + count) because it may overflow. Instead, test whether (count > this.Count - start). Most collections should use the following implementation:
IRange<T> IListSource<T>.Slice(int start, int count) { return Slice(start, count); } public Slice_<T> Slice(int start, int count) { return new Slice_<T>(this, start, count); }
Implements Loyc.Collections.IListSource< out T >.
References Loyc.Collections.ArraySlice< T >.Slice().
Referenced by Loyc.Collections.ArraySlice< T >.Slice().
|
inline |
Returns a sub-range of this list.
start | The new range will start at this index in the current list (this location will be index [0] in the new range). |
count | The desired number of elements in the new range, or int.MaxValue to get all elements until the end of the list. |
ArgumentException | The start index was below zero. |
The (start, count) range is allowed to be invalid, as long as start is zero or above.
this.Count - start
. Implementation note: do not compute (start + count) because it may overflow. Instead, test whether (count > this.Count - start). Most collections should use the following implementation:
IRange<T> IListSource<T>.Slice(int start, int count) { return Slice(start, count); } public Slice_<T> Slice(int start, int count) { return new Slice_<T>(this, start, count); }
Implements Loyc.Collections.IListSource< out T >.
|
inline |
Gets the item at the specified index, and does not throw an exception on failure.
index | An index in the range 0 to Count-1. |
fail | A flag that is set on failure. |
In my original design, the caller could provide a value to return on failure, but this would not allow T to be marked as "out" in C# 4. For the same reason, we cannot have a ref/out T parameter. Instead, the following extension methods are provided:
Implements Loyc.Collections.IListSource< out T >.
|
get |
Returns the original array.
Ideally, to protect the array there would be no way to access its contents beyond the boundaries of the slice. However, the reality in .NET today is that many methods accept "slices" in the form of a triple (list, start index, count). In order to call such an old-style API using a slice, one must be able to extract the internal list and start index values.