NeumaierAddable

Trait NeumaierAddable 

Source
pub trait NeumaierAddable: Sized {
    // Required method
    fn neumaier_compensated_sum(
        value: Self,
        sum: &mut Self,
        compensation: &mut Self,
    );
}

Required Methods§

Source

fn neumaier_compensated_sum( value: Self, sum: &mut Self, compensation: &mut 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 NeumaierAddable for f64

Source§

fn neumaier_compensated_sum( value: Self, sum: &mut Self, compensation: &mut Self, )

Source§

impl NeumaierAddable for Complex<f64>

Source§

fn neumaier_compensated_sum( value: Self, sum: &mut Self, compensation: &mut Self, )

Source§

impl NeumaierAddable for Complex

Source§

fn neumaier_compensated_sum( value: Self, sum: &mut Self, compensation: &mut Self, )

Source§

impl NeumaierAddable for Float

Source§

fn neumaier_compensated_sum( value: Self, sum: &mut Self, compensation: &mut Self, )

Implementors§