Trait Gather1D

Source
pub trait Gather1D<T: ScalarOperand + Zero + Copy> {
    // Required method
    fn gather(&self, indices: &[usize]) -> Array1<T>;
}

Required Methods§

Source

fn gather(&self, indices: &[usize]) -> Array1<T>

Implementations on Foreign Types§

Source§

impl<T: ScalarOperand + Zero + Copy> Gather1D<T> for Array1<T>

Source§

fn gather(&self, indices: &[usize]) -> Array1<T>

Implementors§