[][src]Trait rug::ops::RemAssignRound

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

Compound remainder operation and assignment with a specified rounding method.

Examples

use core::cmp::Ordering;
use rug::{float::Round, ops::RemAssignRound, Float};
struct F(f64);
impl RemAssignRound<f64> for F {
    type Round = Round;
    type Ordering = Ordering;
    fn rem_assign_round(&mut self, rhs: f64, round: Round) -> Ordering {
        let mut f = Float::with_val(53, self.0);
        let dir = f.rem_assign_round(rhs, round);
        self.0 = f.to_f64();
        dir
    }
}
let mut f = F(3.25);
let dir = f.rem_assign_round(1.25, Round::Nearest);
// 3.25 % 1.25 = 0.75
assert_eq!(f.0, 0.75);
assert_eq!(dir, Ordering::Equal);

Associated Types

type Round

The rounding method.

type Ordering

The direction from rounding.

Loading content...

Required methods

fn rem_assign_round(&mut self, rhs: Rhs, round: Self::Round) -> Self::Ordering

Performs the remainder operation.

Examples

use core::cmp::Ordering;
use rug::{float::Round, ops::RemAssignRound, Float};
// only four significant bits
let mut f = Float::with_val(4, 64);
let dir = f.rem_assign_round(33, Round::Nearest);
// 31 rounded up to 32
assert_eq!(f, 32);
assert_eq!(dir, Ordering::Greater);
Loading content...

Implementors

impl RemAssignRound<f32> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<f64> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<i128> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<i16> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<i32> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<i64> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<i8> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<u128> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<u16> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<u32> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<u64> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<u8> for Float[src]

type Round = Round

type Ordering = Ordering

impl RemAssignRound<Float> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ f32> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ f64> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ i128> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ i16> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ i32> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ i64> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ i8> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ u128> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ u16> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ u32> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ u64> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ u8> for Float[src]

type Round = Round

type Ordering = Ordering

impl<'_> RemAssignRound<&'_ Float> for Float[src]

type Round = Round

type Ordering = Ordering

Loading content...