pub trait PowUf<Rhs> {
type Output;
// Required method
fn powuf(self, rhs: Rhs) -> Self::Output;
}Expand description
Extension trait for raising native floats to unsigned-float exponents.
This mirrors the shape of native powf methods while keeping the crate
dependency-free.
Required Associated Types§
Required Methods§
Implementations on Foreign Types§
Source§impl PowUf<Uf64E11M52> for f32
Available on crate feature f128 only.
impl PowUf<Uf64E11M52> for f32
Available on crate feature
f128 only.Source§impl PowUf<Uf64E11M52> for f64
Available on crate feature f128 only.
impl PowUf<Uf64E11M52> for f64
Available on crate feature
f128 only.