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