Trait rugflo::DivRound [] [src]

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

Provides division with a specified rounding method.

Associated Types

The resulting type after the division.

Required Methods

Performs the division.

Implementors