Lines Matching refs:Key
30 template<typename Key, typename KeyCompare, typename RandomGenerator, typename Allocator, bool Allo…
34 using key_type = Key;
51 template <typename Key, typename Compare, typename Allocator>
54 template <typename Key, typename Compare = std::less<Key>, typename Allocator = tbb::tbb_allocator<…
55 class concurrent_set : public concurrent_skip_list<set_traits<Key, Compare, concurrent_geometric_le…
56 …using base_type = concurrent_skip_list<set_traits<Key, Compare, concurrent_geometric_level_generat…
58 using key_type = Key;
126 template <typename Key,
127 typename Comp = std::less<Key>,
128 typename Alloc = tbb::tbb_allocator<Key>,
131 concurrent_set( std::initializer_list<Key>, Comp = Comp(), Alloc = Alloc() )
132 -> concurrent_set<Key, Comp, Alloc>;
141 template <typename Key, typename Alloc,
143 concurrent_set( std::initializer_list<Key>, Alloc )
144 -> concurrent_set<Key, std::less<Key>, Alloc>;
148 template <typename Key, typename Compare, typename Allocator>
149 void swap( concurrent_set<Key, Compare, Allocator>& lhs, in swap() argument
150 concurrent_set<Key, Compare, Allocator>& rhs ) in swap()
155 template <typename Key, typename Compare = std::less<Key>, typename Allocator = tbb::tbb_allocator<…
156 class concurrent_multiset : public concurrent_skip_list<set_traits<Key, Compare, concurrent_geometr…
157 …using base_type = concurrent_skip_list<set_traits<Key, Compare, concurrent_geometric_level_generat…
159 using key_type = Key;
227 template <typename Key,
228 typename Comp = std::less<Key>,
229 typename Alloc = tbb::tbb_allocator<Key>,
232 concurrent_multiset( std::initializer_list<Key>, Comp = Comp(), Alloc = Alloc() )
233 -> concurrent_multiset<Key, Comp, Alloc>;
241 template <typename Key, typename Alloc,
243 concurrent_multiset( std::initializer_list<Key>, Alloc )
244 -> concurrent_multiset<Key, std::less<Key>, Alloc>;
248 template <typename Key, typename Compare, typename Allocator>
249 void swap( concurrent_multiset<Key, Compare, Allocator>& lhs, in swap() argument
250 concurrent_multiset<Key, Compare, Allocator>& rhs ) in swap()