Trait gmp_mpfr::MulRound [] [src]

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

Provides multiplication with a specified rounding method.

Associated Types

The resulting type after the multiplication.

Required Methods

Performs the multiplication.

Implementors