Home
Manual
Reference
Source
arithmetic
F
add32
F
div32
F
mul32
F
neg32
F
sub32
coerce
F
int32
limits
V
max
V
min
logic
F
and32
F
not32
F
or32
F
xor32
order
F
decreasing
F
increasing
shift
F
shl32
F
shl32
src/arithmetic/neg32.js
const neg32 = (x) => -x | 0; export default neg32;