8template <
typename Key,
typename Value,
typename Alloc = stl_allocator<std::pair<const Key, Value>>>
9using xmap = std::map<Key, Value, std::less<Key>, Alloc>;
11template <
typename Key,
typename Value,
typename Alloc = stl_allocator<std::pair<const Key, Value>>>
12using xmultimap = std::multimap<Key, Value, std::less<Key>, Alloc>;
17 class _Pr = std::less<_Kty>,
20 :
public std::map<_Kty, _Ty, _Pr, _Alloc>
26 class _Pr = std::less<_Kty>,
29 :
public std::multimap<_Kty, _Ty, _Pr, _Alloc>
Definition stl_allocator.h:28
std::map< Key, Value, std::less< Key >, Alloc > xmap
Definition xmap.h:9
std::multimap< Key, Value, std::less< Key >, Alloc > xmultimap
Definition xmap.h:12