pub trait FloatIndexMut<Idx>: FloatIndex<Idx> {
    fn data_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 float data.

Required Methods

The method for real indexing

Implementors