Trait rugflo::ShrRound [] [src]

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

Provides the right shift operation with a specified rounding method.

Associated Types

The rounding method.

The direction from rounding.

The resulting type after the right shift operation.

Required Methods

Performs the right shift operation.

Implementors