bits xor for bits

Performs bitwise xor for ints.

Signature

> bits xor {flags} (target)

Parameters

  • target: target int to perform bit xor

Input/output types:

input output
int int
list<int> list<int>

Examples

Apply bits xor to two numbers

> 2 | bits xor 2
0

Apply logical xor to a list of numbers

> [8 3 2] | bits xor 2
╭───┬────╮
 0  10 
 1   1 
 2   0 
╰───┴────╯

Tips: Command bits xor was not included in the official binaries by default, you have to build it with --features=extra flag