pub trait ArrayMathSpecial<N: NumericOps>{
// Required methods
fn i0(&self) -> Result<Array<N>, ArrayError>;
fn sinc(&self) -> Result<Array<N>, ArrayError>;
}
Expand description
ArrayTrait
- Array Math Special functions
Required Methods§
Sourcefn i0(&self) -> Result<Array<N>, ArrayError>
fn i0(&self) -> Result<Array<N>, ArrayError>
Sourcefn sinc(&self) -> Result<Array<N>, ArrayError>
fn sinc(&self) -> Result<Array<N>, ArrayError>
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.