ExpOps

Trait ExpOps 

Source
pub trait ExpOps: DeviceBase {
    // Required methods
    fn array<T: Num>(
        to: *mut T,
        other: *const T,
        num_elm: usize,
        to_stride: usize,
        other_stride: usize,
    );
    fn array_assign<T: Num>(to: *mut T, num_elm: usize, to_stride: usize);
}

Required Methods§

Source

fn array<T: Num>( to: *mut T, other: *const T, num_elm: usize, to_stride: usize, other_stride: usize, )

Source

fn array_assign<T: Num>(to: *mut T, num_elm: usize, to_stride: usize)

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§