Test additional content header

NumberLessThan Operator

Returns a value indicating whether a specified Number is less than another specified Number.

Definition

Namespace: Fluent.Calculations.Primitives.BaseTypes
Assembly: Fluent.Calculations.Primitives (in Fluent.Calculations.Primitives.dll) Version: 1.1.0-aplha
public static Condition operator <(
	Number left,
	Number right
)

Parameters

left  Number
The first value to compare.
right  Number
The second value to compare.

Return Value

Condition
Condition representing if left is less than right.

Implements

IComparisonOperatorsTSelf, TOther, TResultLessThan(TSelf, TOther)

Remarks

The LessThan method defines the operation of the less than operator for Number values.

See Also