diff --git a/src/complex.rs b/src/complex.rs index ab5e86f..000e478 100644 --- a/src/complex.rs +++ b/src/complex.rs @@ -81,9 +81,6 @@ impl Complex { pub fn norm(&self) -> T { self.re.clone().hypot(self.im.clone()) } -} - -impl Complex { /// Calculate the principal Arg of self. #[inline] pub fn arg(&self) -> T {