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