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/sub32.js
const sub32 = (a, b) => (a - b) | 0; export default sub32;