Home
Manual
Reference
Source
arithmetic
F
add
F
div
F
divmod
F
iadd
F
idiv
F
idivmod
F
imod
F
imul
F
ishl
F
ishr
F
ishu
F
isub
F
mod
F
mul
F
neg
F
shl
F
shr
F
shu
F
sub
arithmetic/constants
F
add1
F
div2
F
iadd1
F
idiv2
F
imul2
F
imul5
F
isub1
F
mul2
F
mul5
F
sub1
arithmetic/special
F
div2n
compare
F
absapprox
F
decreasing
F
increasing
F
relapprox
F
sign
constants
F
$0
F
$1
F
$2
F
$5
F
$_1
exponential
V
exp
V
pow
V
sqrt
exponential/constants
F
ipow2
F
pow2
io
F
parse
F
stringify
logarithmic
F
log
F
log2
F
loge
F
loglog
F
loglog2
F
logloge
memory
F
copy
predicate
F
eq
F
ge
F
gt
F
le
F
lt
F
ne
predicate/constants
F
eq0
F
eq1
F
eq_1
F
ge0
F
ge1
F
gt0
F
gt1
F
le0
F
le1
F
lt0
F
lt1
trigonometry
V
PI
V
atan2
V
cos
V
sin
src/arithmetic/ishl.js
export const ishl = (a, n) => (a <<= n);