Share via


TensorSpan<T>.Inequality Operator

Definition

Returns a value that indicates whether two tensor spans are not equal.

public:
 static bool operator !=(System::Numerics::Tensors::TensorSpan<T> % left, System::Numerics::Tensors::TensorSpan<T> % right);
public static bool operator !=(in System.Numerics.Tensors.TensorSpan<T> left, in System.Numerics.Tensors.TensorSpan<T> right);
static member op_Inequality : TensorSpan * TensorSpan -> bool
Public Shared Operator != (ByRef left As TensorSpan(Of T), ByRef right As TensorSpan(Of T)) As Boolean

Parameters

left
TensorSpan<T>

The first tensor span to compare.

right
TensorSpan<T>

The second tensor span to compare.

Returns

true if the two tensor span are not equal; otherwise, false.

Applies to