Test additional content header

NumberGreaterThanOrEqual Operator

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

Implements

IComparisonOperatorsTSelf, TOther, TResultGreaterThanOrEqual(TSelf, TOther)

Remarks

The GreaterThanOrEqual method defines the operation of the greater than or equal operator for Number values.

See Also