Lines Matching refs:Key
43 template<class Key, class T, class Compare = std::less<>>
44 using CMap = std::map<Key, T, Compare, CAddressAllocator<std::pair<const Key, T>>>;
46 template<class Key, class T, class Compare = std::less<>>
47 using CMultiMap = std::multimap<Key, T, Compare, CAddressAllocator<std::pair<const Key, T>>>;
49 template<class Key, class Value, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>>
51 std::unordered_multimap<Key, Value, Hash, KeyEqual, CAddressAllocator<std::pair<const Key, Value>>>;
62 template<class Key, class T, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>>
63 using CUnorderedMap = std::unordered_map<Key, T, Hash, KeyEqual, CAddressAllocator<std::pair<const Key, T>>>;
65 template<class Key, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>>
66 using CUnorderedSet = std::unordered_set<Key, Hash, KeyEqual, CAddressAllocator<Key>>;