…expr… >= …expr…
…expr… <= …expr…
t, t -> BOOL
Non-strict comparison operators.
Values of any type can be compared, but both values must have the same type.
expression | evaluates to |
---|---|
1 >= 0 | TRUE |
1 >= 1 | TRUE |
TRUE >= FALSE | TRUE |
"foo" <= "bar" | FALSE |
(5; 1) <= (5; 2) | TRUE |