pub trait IndexAxisDyn<I: IndexAxisTrait>: ToViewMatrix {
    type Output<'a>: MatrixBase<Dim = DimDyn, Item = Self::Item> + ViewMatrix
       where Self: 'a;

    // Required method
    fn index_axis_dyn(&self, index: I) -> Self::Output<'_>;
}

Required Associated Types§

source

type Output<'a>: MatrixBase<Dim = DimDyn, Item = Self::Item> + ViewMatrix where Self: 'a

Required Methods§

source

fn index_axis_dyn(&self, index: I) -> Self::Output<'_>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I: IndexAxisTrait, M: ToViewMemory, D: DimTrait> IndexAxisDyn<I> for Matrix<M, D>

§

type Output<'a> = Matrix<ViewMem<'a, <Matrix<M, D> as MatrixBase>::Item>, DimDyn> where Self: 'a