6 #ifndef METALL_CONTAINER_UNORDERED_MAP_HPP
7 #define METALL_CONTAINER_UNORDERED_MAP_HPP
11 #include <boost/unordered_map.hpp>
18 template <
class Key,
class T,
class Hash = std::hash<Key>,
19 class KeyEqual = std::equal_to<Key>,
20 class Allocator = manager::allocator_type<std::pair<const Key, T>>>
21 using unordered_map = boost::unordered_map<Key, T, Hash, KeyEqual, Allocator>;
25 template <
class Key,
class T,
class Hash = std::hash<Key>,
26 class KeyEqual = std::equal_to<Key>,
27 class Allocator = manager::allocator_type<std::pair<const Key, T>>>
29 boost::unordered_multimap<Key, T, Hash, KeyEqual, Allocator>;