Trait rugflo::SubRound [] [src]

pub trait SubRound<Rhs = Self> {
    type Round;
    type Ordering;
    type Output;
    fn sub_round(
        self,
        rhs: Rhs,
        round: 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