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

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

Required Methods

Implementors