[][src]Struct accurate::sum::OnlineExactSum

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

Calculates a sum using separate accumulators for each possible exponent

Examples

use accurate::traits::*;
use accurate::sum::OnlineExactSum;

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

References

Based on Zhu and Hayes 10

Trait Implementations

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

type Output = Self

The resulting type after applying the + operator.

impl<F> Add<OnlineExactSum<F>> for OnlineExactSum<F> where
    F: Float + TwoSum + IFastSum + FloatFormat + RawExponent
[src]

type Output = Self

The resulting type after applying the + operator.

impl<F> AddAssign<F> for OnlineExactSum<F> where
    F: TwoSum + FloatFormat + RawExponent
[src]

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

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

impl<F> From<F> for OnlineExactSum<F> where
    F: TwoSum + FloatFormat + RawExponent
[src]

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

impl<F> SumAccumulator<F> for OnlineExactSum<F> where
    F: Float + TwoSum + IFastSum + FloatFormat + RawExponent
[src]

Auto Trait Implementations

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

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

impl<F> Unpin for OnlineExactSum<F>

impl<F> UnwindSafe for OnlineExactSum<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.