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

Enables reading from the vector (via &[T; N])

Required Methods§

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

Implementors§