a <= b
The <= operator compares two arguments and yields a boolean. If a is less than or equal to b, then a <= b yields true. If a is larger than b, then a <= b yields false.
a |
b |
a < b |
1 |
2 |
true |
1.01e2 |
101.0 |
true |
31 |
1 |
false |
-12 |
-11 |
true |
a and b must be scalars.