Constructs a new array slice with unit stride.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public ArraySlice(
T[] values,
int offset
)
Public Sub New (
values As T(),
offset As Integer
)
public:
ArraySlice(
array<T>^ values,
int offset
)
new :
values : 'T[] *
offset : int -> ArraySlice
Parameters
- values
- Type: T
The storage array. - offset
- Type: SystemInt32
The offset of the first element in the storage array.
The values array is re-used. Modifying elements in the array slice
will modify the elements in the original array. Conversely, if elements in the original array
that correspond to elements in the array slice are modified, the elements of the array slice
are modified as well.
Reference