Trait rugflo::PowRound [] [src]

pub trait PowRound<T> {
    type Round;
    type Ordering;
    type Output;
    fn pow_round(self, _: T, _: 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