[][src]Trait easy_ml::numeric::extra::Sqrt

pub trait Sqrt {
    type Output;
    fn sqrt(self) -> Self::Output;
}

A type which can be square rooted.

This is implemented by f32 and f64 by value and by reference.

Associated Types

type Output

Loading content...

Required methods

fn sqrt(self) -> Self::Output

Loading content...

Implementations on Foreign Types

impl Sqrt for f32[src]

type Output = f32

impl<'_> Sqrt for &'_ f32[src]

type Output = f32

impl Sqrt for f64[src]

type Output = f64

impl<'_> Sqrt for &'_ f64[src]

type Output = f64

Loading content...

Implementors

Loading content...