ArrayInstanceTrig

Trait ArrayInstanceTrig 

Source
pub trait ArrayInstanceTrig<T>: ArrayInstance<DType = T>
where T: HasAfEnum,
{ // Provided methods fn sin(&self) -> ArrayExt<T::UnaryOutType> { ... } fn asin(&self) -> ArrayExt<T::UnaryOutType> { ... } fn sinh(&self) -> ArrayExt<T::UnaryOutType> { ... } fn asinh(&self) -> ArrayExt<T::UnaryOutType> { ... } fn cos(&self) -> ArrayExt<T::UnaryOutType> { ... } fn acos(&self) -> ArrayExt<T::UnaryOutType> { ... } fn cosh(&self) -> ArrayExt<T::UnaryOutType> { ... } fn acosh(&self) -> ArrayExt<T::UnaryOutType> { ... } fn tan(&self) -> ArrayExt<T::UnaryOutType> { ... } fn atan(&self) -> ArrayExt<T::UnaryOutType> { ... } fn tanh(&self) -> ArrayExt<T::UnaryOutType> { ... } fn atanh(&self) -> ArrayExt<T::UnaryOutType> { ... } }

Provided Methods§

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.

Implementors§