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 ArraySlice<T> (
Array1D<T> array
)
Public Shared Widening Operator CType (
array As Array1D(Of T)
) As ArraySlice(Of T)
static implicit operator ArraySlice<T> (
Array1D<T> array
)
F# does not support the declaration of new casting operators.
Parameters
- array
- Type: Extreme.CollectionsArray1DT
The array to convert.
Return Value
Type:
ArraySliceTAn array slice that is equivalent to
array.
Reference