Home
Manual
Reference
Source
F
add64
F
and64
F
big64
F
compare
F
get64
F
mul64
F
not64
F
rotl64
F
rotr64
F
shl64
F
shr64
F
xor64
src/xor64.js
export const xor64 = (a, b) => [a[0] ^ b[0], a[1] ^ b[1]];