Trait RealErrorFunctions

Source
pub trait RealErrorFunctions {
    // Required methods
    fn erfcx(self) -> Self;
    fn erf(self) -> Self;
    fn w_im(self) -> Self;
    fn erfi(self) -> Self;
    fn erfc(self) -> Self;
    fn dawson(self) -> Self;
}

Required Methods§

Source

fn erfcx(self) -> Self

Source

fn erf(self) -> Self

Source

fn w_im(self) -> Self

Source

fn erfi(self) -> Self

Source

fn erfc(self) -> Self

Source

fn dawson(self) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl RealErrorFunctions for f64

Source§

fn erfcx(self) -> Self

Source§

fn erf(self) -> Self

Source§

fn w_im(self) -> Self

Source§

fn erfi(self) -> Self

Source§

fn erfc(self) -> Self

Source§

fn dawson(self) -> Self

Implementors§