6 #ifndef METALL_CONTAINER_MAP_HPP
7 #define METALL_CONTAINER_MAP_HPP
11 #include <boost/container/map.hpp>
18 template <
class Key,
class T,
class Compare = std::less<Key>,
19 class Allocator = manager::allocator_type<std::pair<const Key, T>>>
20 using map = boost::container::map<Key, T, Compare, Allocator>;
23 template <
class Key,
class T,
class Compare = std::less<Key>,
24 class Allocator = manager::allocator_type<std::pair<const Key, T>>>
25 using multimap = boost::container::multimap<Key, T, Compare, Allocator>;