Trait rugflo::SubRound [] [src]

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

Provides subtraction with a specified rounding method.

Associated Types

The rounding method.

The direction from rounding.

The resulting type after the subtraction.

Required Methods

Performs the subtraction.

Implementors