Trait gmp_mpfr::PowRound [] [src]

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

Provides the power operation inside self with a specified rounding method.

Associated Types

The resulting type after the power operation.

Required Methods

Performs the power operation.

Implementors