WLJS LogoWLJS Notebook

GreaterEqualThan

GreaterEqualThan[y] is an operator form that yields x≥y when applied to an expression x.

Examples

Use as an operator to test if values are greater than or equal to 5:

Select[{3, 5, 7, 2, 8}, GreaterEqualThan[5]]
(* {5, 7, 8} *)

Please visit the official Wolfram Language Reference for more details.

On this page