Trait flechasdb::numbers::Sqrt

source ·
pub trait Sqrt {
    // Required method
    fn sqrt(self) -> Self;
}
Expand description

Represents a number that can calculate a square root.

Required Methods§

source

fn sqrt(self) -> Self

Returns the square root.

Implementations on Foreign Types§

source§

impl Sqrt for f64

source§

fn sqrt(self) -> f64

source§

impl Sqrt for f32

source§

fn sqrt(self) -> f32

Implementors§