Trait rugflo::ShlRound [] [src]

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

Provides the left shift operation with a specified rounding method.

Associated Types

The rounding method.

The direction from rounding.

The resulting type after the left shift operation.

Required Methods

Performs the left shift operation.

Implementors