Converts an array to an array slice with unit stride.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static implicit operator NativeArraySlice<T> (
NativeArray1D<T> array
)
Public Shared Widening Operator CType (
array As NativeArray1D(Of T)
) As NativeArraySlice(Of T)
static implicit operator NativeArraySlice<T> (
NativeArray1D<T> array
)
F# does not support the declaration of new casting operators.
Parameters
- array
- Type: Extreme.CollectionsNativeArray1DT
The array to convert.
Return Value
Type:
NativeArraySliceTAn array slice that is equivalent to
array.
Reference