Pure
Returns the result of connecting all bits of both numbers using AND (in regards of binary numeral system). It tells which bits are set for both integers.
3&1 => 1 (0011 & 0001 => 0001) 2&1 => 0 (0010 & 0001 => 0000) 11&7 => 3 (1011 & 0111 => 0011) 13&5 => 5 (1101 & 0101 => 0101) 12&6 => 4 (1100 & 0100 => 0100)
1.31
Generated using TypeDoc
Returns the result of connecting all bits of both numbers using AND (in regards of binary numeral system). It tells which bits are set for both integers.
3&1 => 1 (0011 & 0001 => 0001) 2&1 => 0 (0010 & 0001 => 0000) 11&7 => 3 (1011 & 0111 => 0011) 13&5 => 5 (1101 & 0101 => 0101) 12&6 => 4 (1100 & 0100 => 0100)