#include <bits/concept_check.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 |
Classes | |
class | std::queue< Type, Sequence > |
A standard container giving FIFO behavior. More... | |
class | std::priority_queue< Type, Sequence, Compare > |
A standard container automatically sorting its contents. More... | |
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 247 of file stl_queue.h. |
|
Queue ordering relation.
< , and std::lexographical_compare() is usually used to make the determination. Definition at line 241 of file stl_queue.h. |
|
Based on operator<. Definition at line 259 of file stl_queue.h. |
|
Queue equality comparison.
References std::queue< Type, Sequence >::c. |
|
Based on operator<. Definition at line 253 of file stl_queue.h. |
|
Based on operator<. Definition at line 265 of file stl_queue.h. |