pub trait ComplexIndexMut<Idx>: ComplexIndex<Idx>where
    Idx: Sized,
{ fn datac_mut(&mut self, index: Idx) -> &mut Self::Output; }
Expand description

Like std::ops::IndexMut but with a different method name so that it can be used to implement a additional range accessor for complex data.

Note if indexers will return an empty array in case the vector isn’t complex.

Required Methods

The method for complex indexing

Implementors