29 #ifndef _GLIBCXX_EXPERIMENTAL_UNORDERED_SET
30 #define _GLIBCXX_EXPERIMENTAL_UNORDERED_SET 1
32 #pragma GCC system_header
34 #if __cplusplus >= 201402L
40 namespace std _GLIBCXX_VISIBILITY(default)
42 _GLIBCXX_BEGIN_NAMESPACE_VERSION
44 namespace experimental
46 inline namespace fundamentals_v2
48 template<
typename _Key,
typename _Hash,
typename _CPred,
typename _Alloc,
51 erase_if(unordered_set<_Key, _Hash, _CPred, _Alloc>& __cont,
53 { std::__detail::__erase_nodes_if(__cont, __pred); }
55 template<
typename _Key,
typename _Hash,
typename _CPred,
typename _Alloc,
58 erase_if(unordered_multiset<_Key, _Hash, _CPred, _Alloc>& __cont,
60 { std::__detail::__erase_nodes_if(__cont, __pred); }
63 template<
typename _Key,
typename _Hash = hash<_Key>,
64 typename _Pred = equal_to<_Key>>
68 template<
typename _Key,
typename _Hash = hash<_Key>,
69 typename _Pred = equal_to<_Key>>
70 using unordered_multiset
72 polymorphic_allocator<_Key>>;
78 _GLIBCXX_END_NAMESPACE_VERSION
83 #endif // _GLIBCXX_EXPERIMENTAL_UNORDERED_SET
A standard container composed of unique keys (containing at most one of each key value) in which the ...
A standard container composed of equivalent keys (possibly containing multiple of each key value) in ...