Trait rugflo::ShrRound [] [src]

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

Provides the right shift operation with a specified rounding method.

Associated Types

The resulting type after the right shift operation.

Required Methods

Performs the right shift operation.

Implementors