pub trait RealField: ComplexField<Real = Self, Conj = Self> + PartialOrd {
// Required method
fn sqrt(self) -> Self;
}
Expand description
Trait that describes a real number field.
pub trait RealField: ComplexField<Real = Self, Conj = Self> + PartialOrd {
// Required method
fn sqrt(self) -> Self;
}
Trait that describes a real number field.