Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 843 Bytes

File metadata and controls

32 lines (25 loc) · 843 Bytes
layout api-command
language Java
permalink api/java/bit_xor/
command bitXor
related_commands
bit_and bit_not bit_or bit_sal bit_sar
bit_and/
bit_not/
bit_or/
bit_sal/
bit_sar/

Command syntax

{% apibody %} r.bitXor(number) → number r.bitXor(number[, number, ...]) → number {% endapibody %}

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