Function append

Source
pub fn append<T, const CAP: usize>(
    vec: &mut ArrayVec<T, CAP>,
    other: ArrayVec<T, CAP>,
)
Expand description

Appends all items of other to the ArrayVec.