#include <bits/concept_check.h>
#include <debug/debug.h>
Include dependency graph for stl_queue.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 Sequence> | |
bool | operator== (const queue< Type, Sequence > &x, const queue< Type, Sequence > &y) |
Queue equality comparison. | |
template<typename Type, typename Sequence> | |
bool | operator< (const queue< Type, Sequence > &x, const queue< Type, Sequence > &y) |
Queue ordering relation. | |
template<typename Type, typename Sequence> | |
bool | operator!= (const queue< Type, Sequence > &x, const queue< Type, Sequence > &y) |
Based on operator==. | |
template<typename Type, typename Sequence> | |
bool | operator> (const queue< Type, Sequence > &x, const queue< Type, Sequence > &y) |
Based on operator<. | |
template<typename Type, typename Sequence> | |
bool | operator<= (const queue< Type, Sequence > &x, const queue< Type, Sequence > &y) |
Based on operator<. | |
template<typename Type, typename Sequence> | |
bool | operator>= (const queue< Type, Sequence > &x, const queue< Type, Sequence > &y) |
Based on operator<. |
Definition in file stl_queue.h.
|
Based on operator==.
Definition at line 275 of file stl_queue.h. |
|
Queue ordering relation.
< , and std::lexicographical_compare() is usually used to make the determination.
Definition at line 269 of file stl_queue.h. |
|
Based on operator<.
Definition at line 288 of file stl_queue.h. |
|
Queue equality comparison.
Definition at line 250 of file stl_queue.h. References std::queue< Type, Sequence >::c. |
|
Based on operator<.
Definition at line 282 of file stl_queue.h. |
|
Based on operator<.
Definition at line 295 of file stl_queue.h. |