#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 |
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 1465 of file stl_deque.h. |
|
Deque ordering relation.
< .See std::lexicographical_compare() for how the determination is made. Definition at line 1457 of file stl_deque.h. References std::lexicographical_compare(). |
|
Based on operator<.
Definition at line 1479 of file stl_deque.h. |
|
Deque equality comparison.
Definition at line 1439 of file stl_deque.h. 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 1472 of file stl_deque.h. |
|
Based on operator<.
Definition at line 1486 of file stl_deque.h. |
|
See std::deque::swap().
Definition at line 1493 of file stl_deque.h. References std::deque< Type, Alloc >::swap(). |