Equality function for IntPair.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public bool Equals(
	IntPair x,
	IntPair y
)
Visual Basic (Declaration)
Public Function Equals ( _
	x As IntPair, _
	y As IntPair _
) As Boolean
Visual C++
public:
virtual bool Equals(
	IntPair x, 
	IntPair y
) sealed

Parameters

x
Type: CenterSpace.NMath.Matrix..::.IntPair
An integer pair.
y
Type: CenterSpace.NMath.Matrix..::.IntPair
An integer pair.

Return Value

true if both integers in the integer pairs are equal; otherwise false.

Implements

IEqualityComparer<(Of <(T>)>)..::.Equals(T, T)

See Also