Standard C++ Library Reference ISO/IEC (VERSION3)
Next
<deque>
Include the STL standard header <deque> to define the container template class deque and
several supporting templates.
namespace std {
template<class Ty, class Alloc>
 class deque;
 // TEMPLATE FUNCTIONS
template<class Ty, class Alloc>
 bool operator==(
 const deque<Ty, Alloc>& left,
 const deque<Ty, Alloc>& right);
template<class Ty, class Alloc>
 bool operator!=(
 const deque<Ty, Alloc>& left,
 const deque<Ty, Alloc>& right);
template<class Ty, class Alloc>
 bool operator<(
 const deque<Ty, Alloc>& left,
 const deque<Ty, Alloc>& right);
template<class Ty, class Alloc>
 bool operator>(
 const deque<Ty, Alloc>& left,
 const deque<Ty, Alloc>& right);
template<class Ty, class Alloc>
 bool operator<=(
 const deque<Ty, Alloc>& left,
 const deque<Ty, Alloc>& right);
template<class Ty, class Alloc>
 bool operator>=(
 const deque<Ty, Alloc>& left,
 const deque<Ty, Alloc>& right);
template<class Ty, class Alloc>
 void swap(
 deque<Ty, Alloc>& left,
 deque<Ty, Alloc>& right);
 };










