pub trait ArrayInstanceNaturalLog<T>: ArrayInstancewhere
T: HasAfEnum,{
// Required method
fn ln(&self) -> ArrayExt<T::UnaryOutType>;
}
Expand description
Defines the natural logarithm.
Required Methods§
Sourcefn ln(&self) -> ArrayExt<T::UnaryOutType>
fn ln(&self) -> ArrayExt<T::UnaryOutType>
Calculate the element-wise natural logarithm.
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.