zig/std/math
Andrew Kelley 35d3444e27 more intuitive left shift and right shift operators
Before:
 * << is left shift, not allowed to shift 1 bits out
 * <<% is left shift, allowed to shift 1 bits out
 * >> is right shift, allowed to shift 1 bits out

After:
 * << is left shift, allowed to shift 1 bits out
 * >> is right shift, allowed to shift 1 bits out
 * @shlExact is left shift, not allowed to shift 1 bits out
 * @shrExact is right shift, not allowed to shift 1 bits out

Closes #413
2017-08-09 10:09:38 -04:00
..
acos.zig
acosh.zig
asin.zig
asinh.zig
atan.zig
atan2.zig
atanh.zig
cbrt.zig
ceil.zig
copysign.zig
cos.zig
cosh.zig
exp.zig
exp2.zig
expm1.zig
expo2.zig
fabs.zig
floor.zig
fma.zig
frexp.zig
hypot.zig
ilogb.zig
index.zig
inf.zig
isfinite.zig
isinf.zig
isnan.zig
isnormal.zig
ln.zig
log.zig
log1p.zig
log2.zig
log10.zig
modf.zig
nan.zig
pow.zig
round.zig
scalbn.zig
signbit.zig
sin.zig
sinh.zig
sqrt.zig
tan.zig
tanh.zig
trunc.zig