Represents a slice of elements in a one-dimensional array.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public struct NativeArraySlice<T>
Public Structure NativeArraySlice(Of T)
generic<typename T>
public value class NativeArraySlice
[<SealedAttribute>]
type NativeArraySlice<'T> = struct end
Type Parameters
- T
- The element type of the array.
The NativeArraySliceT type exposes the following members.
Top
| Name | Description |
---|
 | Offset |
Gets the offset of the first element in the storage array.
|
 | Stride |
Gets the step between successive elements in the storage array.
|
 | Values |
Gets the storage array.
|
Top
| Name | Description |
---|
 | AsBlasStorage |
Returns the array in a format suitable for calling methods using the BLAS convention.
|
 | AsNativeArray1D |
Returns the array as a linear array with offset.
|
 | AsNativeArray2D |
Constructs a 2D array with the specified leading dimension.
|
 | BlasOffset |
Returns the offset according to the BLAS convention for negative strides.
|
 | Decrement |
Returns an array slice that starts at the element before the first element
of the array slice.
|
 | Equals |
Checks if an object is equal to this instance.
(Overrides ValueTypeEquals(Object).) |
 | From(Int32) |
Returns an array slice starting at the specified index.
|
 | From(Int32, Int32) |
Returns an array slice starting at the specified index.
|
 | GetHashCode |
Gets a hash code for this instance.
(Overrides ValueTypeGetHashCode.) |
 | GetIndex |
Gets the index in the storage array of the element at the specified position.
|
 | GetType | Gets the Type of the current instance. (Inherited from Object.) |
 | Increment |
Returns an array slice that starts at the second element of the array slice.
|
 | Increment(Int32) |
Returns an array slice that skips the specified number of elements of the array slice.
|
 | ToArray |
Returns the elements of the array slice in an array.
|
 | ToString | Returns the fully qualified type name of this instance. (Inherited from ValueType.) |
Top
Top
| Name | Description |
---|
  | Empty |
Returns an array slice with no elements.
|
Top
Reference