#include <functional>
#include <boost/unordered/unordered_node_map.hpp>
#include <metall/metall.hpp>
Go to the source code of this file.
Namespaces | |
namespace | metall |
The top level of namespace of Metall. | |
namespace | metall::container |
Namespace for Metall container. | |
Typedefs | |
template<class Key , class T , class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>, class Allocator = manager::allocator_type<std::pair<const Key, T>>> | |
using | metall::container::unordered_node_map = boost::unordered_node_map< Key, T, Hash, KeyEqual, Allocator > |
An unordered_node_map container that uses Metall as its default allocator. | |