Edit

Share via


TensorSpan<T>.Inequality Operator

Definition

Compares two System.Numerics.Tensors.TensorSpan<T> structs for inequality.

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

Parameters

Returns

false if left and right point at the same memory and have the same length. This method does not check to see if the contents are unequal.

Applies to