public static bool operator !=(
DoubleMatrixRow left,
DoubleMatrixRow right
)
Public Shared Operator <> (
left As DoubleMatrixRow,
right As DoubleMatrixRow
) As Boolean
public:
static bool operator !=(
DoubleMatrixRow^ left,
DoubleMatrixRow^ right
)
static let inline (<>)
left : DoubleMatrixRow *
right : DoubleMatrixRow : bool
DoubleMatrixRow instances are quasi-lexicographically ordered. This means that instances are firstly ordered by their Length, and then, within rows having the same length, by lexicographic order.
This also means that when tested for equality, DoubleMatrixRow instances are considered equal if and only if they have the same Length and, for each column index, entries corresponding to such index are equal, too.