Trait generic_array::arr::AddLength
[−]
[src]
pub trait AddLength<T, N: ArrayLength<T>>: ArrayLength<T> { type Output: ArrayLength<T>; }
Helper trait for arr!
macro
Associated Types
type Output: ArrayLength<T>
Implementors
impl<T, N1, N2> AddLength<T, N2> for N1 where N1: ArrayLength<T> + Add<N2>, N2: ArrayLength<T>, N1::Output: ArrayLength<T>