IndexCollectionCompareTo(IndexCollection) Method

Compares the current object with another object of the same type.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public int CompareTo(
	IndexCollection other
)

Parameters

other  IndexCollection
An object to compare with this object.

Return Value

Int32
A value that indicates the relative order of the objects being compared. The return value has the following meanings:
ValueMeaning
Less than zeroThis object is less than the other parameter.
ZeroThis object is equal to other.
Greater than zeroThis object is greater than other.

Implements

IComparableTCompareTo(T)

Remarks

IndexCollection instances are quasi-lexicographically ordered. This means that instances are firstly ordered by their Count, and then, within collections having the same length, by lexicographic order.

This also means that when tested for equality, IndexCollection instances are considered equal if and only if they have the same Count and, for each index position, indexes corresponding to such position are equal, too.

See Also