Trait rugflo::AddRound [] [src]

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

Provides addition with a specified rounding method.

Associated Types

The resulting type after the addition.

Required Methods

Performs the addition.

Implementors