DataFrameRow<R, C>.Equals Method

Definition

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

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.

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