#include <bits/concept_check.h>
Include dependency graph for stl_map.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::map< Key, Type, Compare, Alloc > |
A standard container made up of (key,value) pairs, which can be retrieved based on a key, in logarithmic time. More... | |
class | std::map< Key, Type, Compare, Alloc >::value_compare |
Defines | |
#define | MAPH |
Functions | |
template<typename Key, typename Type, typename Compare, typename Alloc> | |
bool | std::operator== (const map< Key, Type, Compare, Alloc > &x, const map< Key, Type, Compare, Alloc > &y) |
Map equality comparison. | |
template<typename Key, typename Type, typename Compare, typename Alloc> | |
bool | std::operator< (const map< Key, Type, Compare, Alloc > &x, const map< Key, Type, Compare, Alloc > &y) |
Map ordering relation. | |
template<typename Key, typename Type, typename Compare, typename Alloc> | |
bool | std::operator!= (const map< Key, Type, Compare, Alloc > &x, const map< Key, Type, Compare, Alloc > &y) |
Based on operator==. | |
template<typename Key, typename Type, typename Compare, typename Alloc> | |
bool | std::operator> (const map< Key, Type, Compare, Alloc > &x, const map< Key, Type, Compare, Alloc > &y) |
Based on operator<. | |
template<typename Key, typename Type, typename Compare, typename Alloc> | |
bool | std::operator<= (const map< Key, Type, Compare, Alloc > &x, const map< Key, Type, Compare, Alloc > &y) |
Based on operator<. | |
template<typename Key, typename Type, typename Compare, typename Alloc> | |
bool | std::operator>= (const map< Key, Type, Compare, Alloc > &x, const map< Key, Type, Compare, Alloc > &y) |
Based on operator<. | |
template<typename Key, typename Type, typename Compare, typename Alloc> | |
void | std::swap (map< Key, Type, Compare, Alloc > &x, map< Key, Type, Compare, Alloc > &y) |
See std::map::swap(). |
Definition in file stl_map.h.