Trait rug::ops::PowFromRound [−][src]
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
Loading content...Required methods
fn pow_from_round(&mut self, lhs: Lhs, round: Self::Round) -> Self::Ordering
[src]
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);