[][src]Trait rug::ops::PowFromRound

pub trait PowFromRound<Lhs = Self> {
    type Round;
    type Ordering;
    fn pow_from_round(&mut self, lhs: Lhs, round: Self::Round) -> Self::Ordering;
}

Compound power operation and assignment to the rhs operand with a specified rounding method.

Examples

use core::cmp::Ordering;
use rug::{
    float::Round,
    ops::{PowAssignRound, PowFromRound},
    Float,
};
struct F(f64);
impl PowFromRound<f64> for F {
    type Round = Round;
    type Ordering = Ordering;
    fn pow_from_round(&mut self, lhs: f64, round: Round) -> Ordering {
        let mut f = Float::with_val(53, lhs);
        let dir = f.pow_assign_round(self.0, round);
        self.0 = f.to_f64();
        dir
    }
}
let mut f = F(5.0);
let dir = f.pow_from_round(3.0, Round::Nearest);
// 3.0 ^ 5.0 = 243.0
assert_eq!(f.0, 243.0);
assert_eq!(dir, Ordering::Equal);

Associated Types

type Round

The rounding method.

type Ordering

The direction from rounding.

Loading content...

Required methods

fn pow_from_round(&mut self, lhs: Lhs, round: Self::Round) -> Self::Ordering

Performs the power operation.

Examples

use core::cmp::Ordering;
use rug::{float::Round, ops::PowFromRound, Float};
// only four significant bits
let mut f = Float::with_val(4, 5);
let dir = f.pow_from_round(-3, Round::Nearest);
// −243 rounded up to −240
assert_eq!(f, -240);
assert_eq!(dir, Ordering::Greater);
Loading content...

Implementors

impl PowFromRound<f32> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<f32> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<f64> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<f64> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<i128> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<i128> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<i16> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<i16> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<i32> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<i32> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<i64> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<i64> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<i8> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<i8> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<u128> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<u128> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<u16> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<u16> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<u32> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<u32> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<u64> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<u64> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<u8> for Float[src]

type Round = Round

type Ordering = Ordering

impl PowFromRound<u8> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<Complex> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl PowFromRound<Float> for Float[src]

type Round = Round

type Ordering = Ordering

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ f32> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ f64> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ i128> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ i16> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ i32> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ i64> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ i8> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ u128> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ u16> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ u32> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ u64> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

impl<'_> PowFromRound<&'_ u8> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

impl<'_> PowFromRound<&'_ Complex> for Complex[src]

type Round = (Round, Round)

type Ordering = (Ordering, Ordering)

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

type Round = Round

type Ordering = Ordering

Loading content...