Trait mixed_num::MixedNum [−][src]
pub trait MixedNum where
Self: MixedConsts + MixedNumConversion<i32> + MixedNumConversion<i64> + MixedNumConversion<f32> + MixedNumConversion<f64> + PartialOrd + Sized + Div<Output = Self> + Sub<Output = Self> + Add<Output = Self> + Mul<Output = Self> + AddAssign + SubAssign + Copy, {
fn mixed_max_value() -> Self;
fn mixed_min_value() -> Self;
fn mixed_abs(&self) -> Self;
fn mixed_powi(&self, exp: i32) -> Self;
fn sign(&self) -> Self;
}Required methods
fn mixed_max_value() -> Self
fn mixed_max_value() -> Self
Maximum value of the type.
fn mixed_min_value() -> Self
fn mixed_min_value() -> Self
Minimum value of the type.
fn mixed_powi(&self, exp: i32) -> Self
fn mixed_powi(&self, exp: i32) -> Self
Integer valued power.
