Documentation
1
2
3
4
5
6
7
use std::collections::*;

/// Vector.
pub type Vector<ItemT> = Vec<ItemT>;

/// Deque.
pub type Deque<ItemT> = VecDeque<ItemT>;