Negating an integer value: -x
Comparison operators
Less than or equal: x <= y
Greater than or equal: x >= y
Bitwise logical operators
Bitwise logical not (one's complement): ~x
Bitwise logical and: x & y
Bitwise logical or: x | y
Bitwise logical exclusive or: x ^ y
val shift_left : t -> t -> t
Shifting bits left: x << y
val shift_right : t -> t -> t
Shifting bits right: x >> y
Logical operators
val c_logand : t -> t -> t
val c_logor : t -> t -> t