Click or drag to resize

DoubleMatrixRowLessThan Operator

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

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

Parameters

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

Return Value

Type: Boolean
true if left is less than right; otherwise, false.
Remarks

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.

See Also