#include <functional>
#include <boost/unordered_set.hpp>
#include <metall/metall.hpp>
Go to the source code of this file.
|
| template<class Key , class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>, class Allocator = manager::allocator_type<Key>> |
| using | metall::container::unordered_set = boost::unordered_set< Key, Hash, KeyEqual, Allocator > |
| | An unordered_set container that uses Metall as its default allocator.
|
| |
| template<class Key , class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>, class Allocator = manager::allocator_type<Key>> |
| using | metall::container::unordered_multiset = boost::unordered_multiset< Key, Hash, KeyEqual, Allocator > |
| | An unordered_multiset container that uses Metall as its default allocator.
|
| |