Click or drag to resize

IndexCollectionLessThan Operator

Returns a value that indicates whether an IndexCollection instance is less than another IndexCollection instance.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public static bool operator <(
	IndexCollection left,
	IndexCollection right
)

Parameters

left
Type: Novacta.AnalyticsIndexCollection
The first instance to compare.
right
Type: Novacta.AnalyticsIndexCollection
The second instance to compare.

Return Value

Type: Boolean
true if left is less than right; otherwise, false.
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.

See Also