Trait rugflo::MulRound [] [src]

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

Provides multiplication with a specified rounding method.

Associated Types

The resulting type after the multiplication.

Required Methods

Performs the multiplication.

Implementors