Returns the absolute value (modulus) of z.
pub fn abs(z: anytype) @TypeOf(z.re, z.im)
pub fn abs(z: anytype) @TypeOf(z.re, z.im) { return math.hypot(z.re, z.im); }