Trait rugflo::ShlRound [] [src]

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

Provides the left shift operation with a specified rounding method.

Associated Types

The resulting type after the left shift operation.

Required Methods

Performs the left shift operation.

Implementors