Click or drag to resize

SubsetInequality Operator

Tests for inequality of two subsets. Two subsets are unequal if they have different lengths or their indices are not all equal.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static bool operator !=(
	Subset x,
	Subset y
)

Parameters

x  Subset
The left-hand subset.
y  Subset
The right-hand subset.

Return Value

Boolean
True if the subsets are of different lengths, contain different indices, or are not both null; otherwise, false.
See Also