deque header
From Cppwiki
(Redirected from deque)
<deque> is a C++ Standard Library #include. It is responsible for defining the deque class template.
namespace std {
Comparison Operators
template<typename T, typename Alloc = std::allocator<T> class deque;
template<typename T, typename Alloc> bool operator==(const deque<T, Alloc> &, const deque<T, Alloc> &);
template<typename T, typename Alloc> bool operator<(const deque<T, Alloc> &, const deque<T, Alloc> &);
template<typename T, typename Alloc> bool operator!=(const deque<T, Alloc> &, const deque<T, Alloc> &);
template<typename T, typename Alloc> bool operator >=(const deque<T, Alloc> &, const deque<T, Alloc> &);
template<typename T, typename Alloc> bool operator <=(const deque<T, Alloc> &, const deque<T, Alloc> &);
template<typename T, typename Alloc> bool operator >(const deque<T, Alloc> &, const deque<T, Alloc> &);
deque class
template<typename T, typename Alloc=allocator<T> >
class deque {
};
}