TensorIndex Implicit  Conversion Operators

Definition

Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.0

Overload List

Implicit(Index to TensorIndex) Implicitly converts a Index to a TensorIndex.
Implicit(Int32 to TensorIndex) Implicitly converts an integer to a TensorIndex.
Implicit(Range to TensorIndex) Implicitly converts a Range to a TensorIndex.
Implicit(Range to TensorIndex) Implicitly converts a Range to a TensorIndex.
Implicit(Slice to TensorIndex) Implicitly converts a Slice to a TensorIndex.

Implicit Conversion (Index to TensorIndex)

Implicitly converts a Index to a TensorIndex.
C#
public static implicit operator TensorIndex (
	Index index
)

Parameters

index  Index
A Index.

Return Value

TensorIndex

Implicit Conversion (Int32 to TensorIndex)

Implicitly converts an integer to a TensorIndex.
C#
public static implicit operator TensorIndex (
	int index
)

Parameters

index  Int32
An integer index.

Return Value

TensorIndex

Implicit Conversion (Range to TensorIndex)

Implicitly converts a Range to a TensorIndex.
C#
public static implicit operator TensorIndex (
	Range range
)

Parameters

range  Range
A Range.

Return Value

TensorIndex

Implicit Conversion (Range to TensorIndex)

Implicitly converts a Range to a TensorIndex.
C#
public static implicit operator TensorIndex (
	Range range
)

Parameters

range  Range
A Range.

Return Value

TensorIndex

Implicit Conversion (Slice to TensorIndex)

Implicitly converts a Slice to a TensorIndex.
C#
public static implicit operator TensorIndex (
	Slice slice
)

Parameters

slice  Slice
A Slice.

Return Value

TensorIndex

See Also