Trait rugflo::MulRound [] [src]

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

Provides multiplication with a specified rounding method.

Associated Types

The rounding method.

The direction from rounding.

The resulting type after the multiplication.

Required Methods

Performs the multiplication.

Implementors