Function rustduino::math::xor[][src]

pub fn xor(a: u8, b: u8) -> u8
Expand description

Get the bitwise XOR (exclusive OR) of two 8 bits unsigned integers.

Arguments

  • a - a u8, first unsigned integer.
  • b - a u8, second unsigned integer.

Returns

  • a u8 - bitwise XOR.