Back to top

ReQL command: bitXor

Command syntax

r.bitXor(number) → number

r.bitXor(number[, number, ...]) → number

Description

A bitwise XOR is a binary operation that takes two bit patterns of equal length and performs the logical exclusive OR operation on each pair of corresponding bits. The result in each position is 1 if only the first bit is 1 or only the second bit is 1, but will be 0 if both are 0 or both are 1. In this we perform the comparison of two bits, being 1 if the two bits are different, and 0 if they are the same.

Example:

r.expr(6).bitXor(4).run(conn);

// Result:
2

Get more help

Couldn't find what you were looking for?