>= (greater than or equal to)
Operators
1+ (increment)
Returns
the bitwise NOT (1's complement) of the argument
Arguments
-
int
-
Return Values
The bitwise NOT (1's complement) of the argument.
Examples
(~ 3) returns -4
(~ 100) returns -101
(~ -4) returns 3