TensorSpan<T>.Inequality Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
.