Trait Flip

Source
pub trait Flip<A, S> {
    // Required method
    fn flip(&self) -> ArrayView1<'_, A>;
}

Required Methods§

Source

fn flip(&self) -> ArrayView1<'_, A>

Implementations on Foreign Types§

Source§

impl<A, S> Flip<A, S> for ArrayBase<S, Ix1>
where A: Clone, S: Data<Elem = A>,

Source§

fn flip(&self) -> ArrayView1<'_, A>
where A: Clone, S: Data<Elem = A>,

Implementors§