Type Definition nalgebra::base::DVectorSliceMut
source · [−]pub type DVectorSliceMut<'a, T, RStride = U1, CStride = Dynamic> = Matrix<T, Dynamic, U1, SliceStorageMut<'a, T, Dynamic, U1, RStride, CStride>>;
Expand description
A column vector slice dynamic numbers of rows and columns.
Because this is an alias, not all its methods are listed here. See the Matrix
type too.
Trait Implementations
sourceimpl<'a, T: Scalar + Copy> From<&'a mut [T]> for DVectorSliceMut<'a, T>
impl<'a, T: Scalar + Copy> From<&'a mut [T]> for DVectorSliceMut<'a, T>
sourcefn from(slice: &'a mut [T]) -> Self
fn from(slice: &'a mut [T]) -> Self
Performs the conversion.