#include <bits/concept_check.h>#include <debug/debug.h>Include dependency graph for stl_stack.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::stack< Type, Sequence > |
| A standard container giving FILO behavior. More... | |
Functions | |
| template<typename Type, typename Seq> bool | operator== (const stack< Type, Seq > &x, const stack< Type, Seq > &y) |
| Stack equality comparison. | |
| template<typename Type, typename Seq> bool | operator< (const stack< Type, Seq > &x, const stack< Type, Seq > &y) |
| Stack ordering relation. | |
| template<typename Type, typename Seq> bool | operator!= (const stack< Type, Seq > &x, const stack< Type, Seq > &y) |
| Based on operator==. | |
| template<typename Type, typename Seq> bool | operator> (const stack< Type, Seq > &x, const stack< Type, Seq > &y) |
| Based on operator<. | |
| template<typename Type, typename Seq> bool | operator<= (const stack< Type, Seq > &x, const stack< Type, Seq > &y) |
| Based on operator<. | |
| template<typename Type, typename Seq> bool | operator>= (const stack< Type, Seq > &x, const stack< Type, Seq > &y) |
| Based on operator<. | |
Definition in file stl_stack.h.
|
||||||||||||||||
|
Based on operator==. Definition at line 250 of file stl_stack.h. |
|
||||||||||||||||
|
Stack ordering relation.
<, and std::lexicographical_compare() is usually used to make the determination. Definition at line 244 of file stl_stack.h. |
|
||||||||||||||||
|
Based on operator<. Definition at line 262 of file stl_stack.h. |
|
||||||||||||||||
|
Stack equality comparison.
References std::stack< Type, Sequence >::c. |
|
||||||||||||||||
|
Based on operator<. Definition at line 256 of file stl_stack.h. |
|
||||||||||||||||
|
Based on operator<. Definition at line 268 of file stl_stack.h. |
1.3.8