#include <bits/concept_check.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 |
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 228 of file stl_stack.h. |
|
Stack ordering relation.
< , and std::lexographical_compare() is usually used to make the determination.
Definition at line 222 of file stl_stack.h. |
|
Based on operator<.
Definition at line 240 of file stl_stack.h. |
|
Stack equality comparison.
Definition at line 205 of file stl_stack.h. |
|
Based on operator<.
Definition at line 234 of file stl_stack.h. |
|
Based on operator<.
Definition at line 246 of file stl_stack.h. |