GreaterEqual

Name

GreaterEqual -- Determines whether a value is greater than or equal to another

Synopsis

GreaterEqual[x->NUMBER, y->NUMBER] =: BOOLEAN 
GreaterEqual[x->TEXT, y->TEXT] =: BOOLEAN 

Description

GreaterEqual returns True when x is greater than or equal to y. For TEXT values, the ordering of the machine's character set is used.

Short form

x >= y

See also

Greater, Less, LessEqual.