Trait rugflo::AddRound [] [src]

pub trait AddRound<T> {
    type Round;
    type Ordering;
    type Output;
    fn add_round(self, _: T, _: Self::Round) -> (Self::Output, Self::Ordering);
}

Provides addition with a specified rounding method.

Associated Types

The rounding method.

The direction from rounding.

The resulting type after the addition.

Required Methods

Performs the addition.

Implementors