29#ifndef _GLIBCXX_UNORDERED_SET
30#define _GLIBCXX_UNORDERED_SET 1
32#pragma GCC system_header
36#if __cplusplus < 201103L
49#define __glibcxx_want_erase_if
50#define __glibcxx_want_generic_unordered_lookup
51#define __glibcxx_want_node_extract
52#define __glibcxx_want_nonmember_container_access
55#if __cplusplus >= 201703L
57namespace std _GLIBCXX_VISIBILITY(default)
59_GLIBCXX_BEGIN_NAMESPACE_VERSION
62 template<
typename _Key,
typename _Hash = std::hash<_Key>,
63 typename _Pred = std::equal_to<_Key>>
66 polymorphic_allocator<_Key>>;
67 template<
typename _Key,
typename _Hash = std::hash<_Key>,
68 typename _Pred = std::equal_to<_Key>>
69 using unordered_multiset
71 polymorphic_allocator<_Key>>;
73_GLIBCXX_END_NAMESPACE_VERSION
77#if __cplusplus > 201703L
78namespace std _GLIBCXX_VISIBILITY(default)
80_GLIBCXX_BEGIN_NAMESPACE_VERSION
81 template<
typename _Key,
typename _Hash,
typename _CPred,
typename _Alloc,
84 erase_if(unordered_set<_Key, _Hash, _CPred, _Alloc>&
__cont,
87 _GLIBCXX_STD_C::unordered_set<_Key, _Hash, _CPred, _Alloc>&
89 return __detail::__erase_nodes_if(
__cont, __ucont, __pred);
92 template<
typename _Key,
typename _Hash,
typename _CPred,
typename _Alloc,
95 erase_if(unordered_multiset<_Key, _Hash, _CPred, _Alloc>&
__cont,
98 _GLIBCXX_STD_C::unordered_multiset<_Key, _Hash, _CPred, _Alloc>&
100 return __detail::__erase_nodes_if(
__cont, __ucont, __pred);
102_GLIBCXX_END_NAMESPACE_VERSION
ISO C++ entities toplevel namespace is std.
A standard container composed of equivalent keys (possibly containing multiple of each key value) in ...
_Hashtable::size_type size_type
Iterator-related typedefs.
A standard container composed of unique keys (containing at most one of each key value) in which the ...
_Hashtable::size_type size_type
Iterator-related typedefs.