r.bit_not() → number
A bitwise NOT, or complement, is a unary operation that performs logical negation on each bit, forming the ones’ complement of the given binary value. Bits that are 0 become 1, and those that are 1 become 0.
Example:
> r.expr(7).bitNot().run(conn)
-8
Couldn't find what you were looking for?
Contribute: edit this page or open an issue