[][src]Struct accurate::sum::Sum2

pub struct Sum2<F> { /* fields omitted */ }

SumK with two cascaded accumulators

Examples

use accurate::traits::*;
use accurate::sum::Sum2;

let s = Sum2::zero() + 1.0 + 2.0 + 3.0;
assert_eq!(6.0f64, s.sum());

References

Based on Ogita, Rump and Oishi 05

Trait Implementations

impl<F> Add<F> for Sum2<F> where
    Sum2<F>: AddAssign<F>, 
[src]

type Output = Self

The resulting type after applying the + operator.

impl<F> Add<Sum2<F>> for Sum2<F> where
    F: Float + TwoSum
[src]

type Output = Self

The resulting type after applying the + operator.

impl<F> AddAssign<F> for Sum2<F> where
    F: Float + TwoSum + AddAssign
[src]

impl<F: Clone> Clone for Sum2<F>[src]

impl<F: Copy> Copy for Sum2<F>[src]

impl<F: Debug> Debug for Sum2<F>[src]

impl<F> From<F> for Sum2<F> where
    F: Float
[src]

impl<F> Send for Sum2<F> where
    F: Send
[src]

impl<F> SumAccumulator<F> for Sum2<F> where
    F: Float + TwoSum + AddAssign
[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for Sum2<F> where
    F: RefUnwindSafe

impl<F> Sync for Sum2<F> where
    F: Sync

impl<F> Unpin for Sum2<F> where
    F: Unpin

impl<F> UnwindSafe for Sum2<F> where
    F: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<Acc, F> ParallelSumAccumulator<F> for Acc where
    Acc: SumAccumulator<F, Output = Acc> + Add<Acc> + Send
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.