Trait rug::ops::DivAssignRound [] [src]

pub trait DivAssignRound<Rhs = Self> {
    type Round;
    type Ordering;
    fn div_assign_round(
        &mut self,
        rhs: Rhs,
        round: Self::Round
    ) -> Self::Ordering; }

Compound division and assignment with a specified rounding method.

Associated Types

The rounding method.

The direction from rounding.

Required Methods

Performs the division.

Examples

use rug::Float;
use rug::float::Round;
use rug::ops::DivAssignRound;
use std::cmp::Ordering;
// only four significant bits
let mut f = Float::with_val(4, -3);
let dir = f.div_assign_round(5, Round::Nearest);
// -0.6 rounded down to -0.625
assert_eq!(f, -0.625);
assert_eq!(dir, Ordering::Less);

Implementors