prepend

Function prepend 

Source
unsafe fn prepend<T, A: Allocator>(deque: &mut VecDeque<T, A>, slice: &[T])
Expand description

§Safety

Elements of slice will be copied into the deque, make sure to forget the items if T is not Copy.