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