public int CompareTo(
DoubleMatrixRow other
)Public Function CompareTo (
other As DoubleMatrixRow
) As Integerpublic:
virtual int CompareTo(
DoubleMatrixRow^ other
) sealedabstract CompareTo :
other : DoubleMatrixRow -> int
override CompareTo :
other : DoubleMatrixRow -> int | Value | Meaning |
|---|---|
| Less than zero | This object is less than the other parameter. |
| Zero | This object is equal to other. |
| Greater than zero | This object is greater than other. |
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.