Trait ddtri::Sqrt

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

A trait for types that implement the the square-root function.

Required Methods§

source

fn _sqrt(self) -> Self

Returns the square root of a number.

Returns NaN if self is a negative number other than -0.0.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Sqrt for f32

source§

fn _sqrt(self) -> Self

source§

impl Sqrt for f64

source§

fn _sqrt(self) -> Self

Implementors§