zig/std/math/complex
Andrew Kelley fcbb7426fa use * for pointer type instead of &
See #770

To help automatically translate code, see the
zig-fmt-pointer-reform-2 branch.

This will convert all & into *. Due to the syntax
ambiguity (which is why we are making this change),
even address-of & will turn into *, so you'll have
to manually fix thes instances. You will be guaranteed
to get compile errors for them - expected 'type', found 'foo'
2018-05-31 17:28:07 -04:00
..
abs.zig Add initial complex-number support 2018-04-24 19:18:31 +12:00
acos.zig clean up complex math tests 2018-04-24 21:14:12 -04:00
acosh.zig clean up complex math tests 2018-04-24 21:14:12 -04:00
arg.zig Add initial complex-number support 2018-04-24 19:18:31 +12:00
asin.zig clean up complex math tests 2018-04-24 21:14:12 -04:00
asinh.zig clean up complex math tests 2018-04-24 21:14:12 -04:00
atan.zig use * for pointer type instead of & 2018-05-31 17:28:07 -04:00
atanh.zig clean up complex math tests 2018-04-24 21:14:12 -04:00
conj.zig Add initial complex-number support 2018-04-24 19:18:31 +12:00
cos.zig clean up complex math tests 2018-04-24 21:14:12 -04:00
cosh.zig use * for pointer type instead of & 2018-05-31 17:28:07 -04:00
exp.zig use * for pointer type instead of & 2018-05-31 17:28:07 -04:00
index.zig use * for pointer type instead of & 2018-05-31 17:28:07 -04:00
ldexp.zig use * for pointer type instead of & 2018-05-31 17:28:07 -04:00
log.zig clean up complex math tests 2018-04-24 21:14:12 -04:00
pow.zig use * for pointer type instead of & 2018-05-31 17:28:07 -04:00
proj.zig Add initial complex-number support 2018-04-24 19:18:31 +12:00
sin.zig clean up complex math tests 2018-04-24 21:14:12 -04:00
sinh.zig use * for pointer type instead of & 2018-05-31 17:28:07 -04:00
sqrt.zig use * for pointer type instead of & 2018-05-31 17:28:07 -04:00
tan.zig clean up complex math tests 2018-04-24 21:14:12 -04:00
tanh.zig use * for pointer type instead of & 2018-05-31 17:28:07 -04:00