Trait rugflo::MulRound [] [src]

pub trait MulRound<Rhs = Self> {
    type Round;
    type Ordering;
    type Output;
    fn mul_round(
        self,
        rhs: Rhs,
        round: 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