largerEq

x >= y

largerEq(x, y)

Try it yourself:


largerEq(): Greater Than or Equal To

largerEq() tests whether the first value is greater than or equal to the second. It is appropriate for inclusive limits such as minimum balances, acceptable scores, and nonnegative constraints.

Writing clear boundaries

largerEq(10, 10) is true, unlike larger(). Combine it with smallerEq() and and() for a closed range. Use equal() when only exact equality matters.

Measurements and computed decimals can sit near a boundary because of floating-point precision. Compare a tolerance-adjusted value rather than relying on a rounded display, and ensure both sides use compatible units with to().

Try Larger Eq in Calcul.io

Start with one of the editable examples above, then replace its arguments with your own values. Keeping the function on a separate calculator line makes the input and result easy to compare. For a longer workflow, assign the result to a variable or reference that line in the next expression.

Check the shown signature before adding optional arguments, and use the related-function links to compare operations with similar purposes.

All functions