Trait rin::math::storage::ContiguousStorageMut[][src]

pub unsafe trait ContiguousStorageMut<N, R, C = U1>: StorageMut<N, R, C> + ContiguousStorage<N, R, C> where
    C: Dim,
    N: Scalar,
    R: Dim
{ }

A mutable matrix storage that is stored contiguously in memory.

The storage requirement means that for any value of i in [0, nrows * ncols[, the value .get_unchecked_linear returns one of the matrix component. This trait is unsafe because failing to comply to this may cause Undefined Behaviors.

Implementors