pub trait AsMutVectorParts<T, const N: usize>where
    T: VectorScalar,{
    // Required method
    fn as_mut_parts(&mut self) -> &mut [T; N];
}
Expand description

Enables writing to the vector (via &mut [T; N])

Required Methods§

fn as_mut_parts(&mut self) -> &mut [T; N]

Implementors§