pub trait Ln1p {
// Required method
fn kernel_ln_1p(self) -> Self;
}
Required Methods§
Sourcefn kernel_ln_1p(self) -> Self
fn kernel_ln_1p(self) -> Self
Returns ln(1. + self)
(natural logarithm) more accurately than if the operations were performed separately.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl Ln1p for f64
impl Ln1p for f64
Source§fn kernel_ln_1p(self) -> Self
fn kernel_ln_1p(self) -> Self
Returns ln(1. + self)
(natural logarithm) more accurately than if the operations were performed separately.