macro_rules! impl_v1 {
([$($impl_generics:tt)*], $V:ty, [$($where:tt)*]) => { ... };
($const_arg:tt, [$($impl_generics:tt)*], $V:ty, [$($where:tt)*]) => { ... };
}
Expand description
Implements NVec<D1, T>
for a struct which is sort of like a 1-dimensional
vector, such as the standard Vec<T>
.