Bitwise.bxor

You're seeing just the function bxor, go back to Bitwise module for more information.

Specs

bxor(integer(), integer()) :: integer()

Calculates the bitwise XOR of its arguments.

Allowed in guard tests. Inlined by the compiler.

Examples

iex> bxor(9, 3)
10