Test additional content header

NumberLessThanOrEqual Operator

Returns a value indicating whether a specified Number is less than or equal to 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 or equal to right.

Implements

IComparisonOperatorsTSelf, TOther, TResultLessThanOrEqual(TSelf, TOther)

Remarks

The LessThanOrEqual method defines the operation of the less than or equal operator for Number values.

See Also