Trait gmp_mpfr::DivRound [] [src]

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

Provides division with a specified rounding method.

Associated Types

The resulting type after the division.

Required Methods

Performs the division.

Implementors