Function std::at_vec::append

pub fn append<T: Clone>(lhs: @[T], rhs: &[T]) -> @[T]

Iterates over the rhs vector, copying each element and appending it to the lhs. Afterwards, the lhs is then returned for use again.