Matrix<T>.GetHashCode Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetHashCode() Returns the hash code for this instance.
GetHashCode(IEqualityComparer) Returns a hash code for this instance.

GetHashCode

Returns the hash code for this instance.
C#
public override int GetHashCode()

Return Value

Int32
A 32-bit signed integer hash code.

GetHashCode(IEqualityComparer)

Returns a hash code for this instance.
C#
public int GetHashCode(
	IEqualityComparer comparer
)

Parameters

comparer  IEqualityComparer
The IEqualityComparer to use to generate hash codes.

Return Value

Int32
A hash code for this instance.

Implements

IStructuralEquatable.GetHashCode(IEqualityComparer)

See Also