#include <bits/concept_check.h>
#include <bits/stl_iterator_base_types.h>
#include <bits/stl_iterator_base_funcs.h>
Include dependency graph for stl_deque.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
namespace | std |
Classes | |
struct | std::Deque_iterator< Type, Ref, Ptr > |
A deque::iterator. More... | |
class | std::deque< Type, Alloc > |
A standard container using fixed-size memory allocation and constant-time manipulation of elements at either end. More... | |
Functions | |
template<typename Type, typename Alloc> bool | operator== (const deque< Type, Alloc > &x, const deque< Type, Alloc > &y) |
Deque equality comparison. | |
template<typename Type, typename Alloc> bool | operator< (const deque< Type, Alloc > &x, const deque< Type, Alloc > &y) |
Deque ordering relation. | |
template<typename Type, typename Alloc> bool | operator!= (const deque< Type, Alloc > &x, const deque< Type, Alloc > &y) |
Based on operator==. | |
template<typename Type, typename Alloc> bool | operator> (const deque< Type, Alloc > &x, const deque< Type, Alloc > &y) |
Based on operator<. | |
template<typename Type, typename Alloc> bool | operator<= (const deque< Type, Alloc > &x, const deque< Type, Alloc > &y) |
Based on operator<. | |
template<typename Type, typename Alloc> bool | operator>= (const deque< Type, Alloc > &x, const deque< Type, Alloc > &y) |
Based on operator<. | |
template<typename Type, typename Alloc> void | swap (deque< Type, Alloc > &x, deque< Type, Alloc > &y) |
See std::deque::swap(). |
Definition in file stl_deque.h.
|
Based on operator==. Definition at line 1567 of file stl_deque.h. |
|
Deque ordering relation.
< .See std::lexographical_compare() for how the determination is made. Definition at line 1558 of file stl_deque.h. References std::lexicographical_compare(). |
|
Based on operator<. Definition at line 1581 of file stl_deque.h. |
|
Deque equality comparison.
References std::deque< Type, Alloc >::begin(), std::deque< Type, Alloc >::end(), std::equal(), and std::deque< Type, Alloc >::size(). |
|
Based on operator<. Definition at line 1574 of file stl_deque.h. |
|
Based on operator<. Definition at line 1588 of file stl_deque.h. |
|
See std::deque::swap(). Definition at line 1595 of file stl_deque.h. References std::deque< Type, Alloc >::swap(). |