#include <functional>
#include <boost/unordered_map.hpp>
#include <metall/metall.hpp>
Go to the source code of this file.
|
| 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_map = boost::unordered_map< Key, T, Hash, KeyEqual, Allocator > |
| | An unordered_map container that uses Metall as its default allocator.
|
| |
| 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_multimap = boost::unordered_multimap< Key, T, Hash, KeyEqual, Allocator > |
| | An unordered_multimap container that uses Metall as its default allocator.
|
| |