Index<T>.Equals Method

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.3

Overload List

Equals(Index<T>) Indicates whether the current index is equal to another index.
Equals(Object)Determines whether the specified object is equal to the current object.

Equals(Index<T>)

Indicates whether the current index is equal to another index.
C#
public virtual bool Equals(
	Index<T> other
)

Parameters

other  Index<T>
The index to compare to.

Return Value

Boolean
true if both indexes have the same elements; otherwise false.

Implements

IEquatable<T>.Equals(T)

Equals(Object)

Determines whether the specified object is equal to the current object.
C#
public override bool Equals(
	Object obj
)

Parameters

obj  Object
The object to compare with the current object.

Return Value

Boolean
true if the specified object is equal to the current object; otherwise, false.

See Also