DataFrameRow<R, C>.Equals Method

Definition

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

Overload List

Equals(DataFrameRow<R, C>) Compares two data frame rows for equality.
Equals(Object)Determines whether the specified object is equal to the current object.

DataFrameRow<R, C>.Equals(DataFrameRow<R, C>)

Compares two data frame rows for equality.
C#
public bool Equals(
	DataFrameRow<R, C> other
)

Parameters

other  DataFrameRow<R, C>
A data frame row.

Return Value

Boolean
true if other is not null, the column index of both rows are equal, and the corresponding elements of each row are equal; otherwise false.

Implements

IEquatable<T>.Equals(T)

See Also