Trait faer_core::RealField

source ·
pub trait RealField: ComplexField<Real = Self, Conj = Self> + PartialOrd {
    // Required method
    fn sqrt(self) -> Self;
}
Expand description

Trait that describes a real number field.

Required Methods§

source

fn sqrt(self) -> Self

Returns the square root of the number.

Implementations on Foreign Types§

source§

impl RealField for f32

source§

fn sqrt(self) -> Self

source§

impl RealField for f64

source§

fn sqrt(self) -> Self

Implementors§