Trait rugflo::PowRound [] [src]

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

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

Associated Types

The rounding method.

The direction from rounding.

The resulting type after the power operation.

Required Methods

Performs the power operation.

Implementors