Trait complex_division::Number
source · [−]pub trait Number: PartialOrd + Clone + Add<Output = Self> + Sub<Output = Self> + Div<Output = Self> + Mul<Output = Self> + Neg<Output = Self> {
fn abs(&self) -> Self;
fn inv(&self) -> Self;
fn is_zero(&self) -> bool;
}