bnand
bnand(x_op1x_op2[x_op3... ] ) =>x_result
Description
Returns the integer result of the Boolean NAND operation on each parallel pair of bits in each operand. Prefix form of the ~& bitwise operator.
Arguments
Value Returned
Examples
bnand(12 13)
=> -13
bnand(1 2 3 4 5)
=> -1
Related Topics
Return to top