Click or drag to resize

SubsetEquality Operator

Tests for equality of two subsets. Two subsets are equal if they have the same length and all indices are 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 the same length and contain the same indices, or if both subsets are null; otherwise, false.
See Also