libstdc++
|
Inherits unordered_set< _Key, _Hash, _Pred, _Alloc >, and std::__profile::_Unordered_profile< _UnorderedCont, _Unique_keys >.
Public Member Functions | |
unordered_set (size_type __n, const hasher &__hf=hasher(), const key_equal &__eql=key_equal(), const allocator_type &__a=allocator_type()) | |
template<typename _InputIterator > | |
unordered_set (_InputIterator __f, _InputIterator __l, size_type __n=0, const hasher &__hf=hasher(), const key_equal &__eql=key_equal(), const allocator_type &__a=allocator_type()) | |
unordered_set (const unordered_set &)=default | |
unordered_set (const _Base &__x) | |
unordered_set (unordered_set &&)=default | |
unordered_set (const allocator_type &__a) | |
unordered_set (const unordered_set &__uset, const allocator_type &__a) | |
unordered_set (unordered_set &&__uset, const allocator_type &__a) | |
unordered_set (initializer_list< value_type > __l, size_type __n=0, const hasher &__hf=hasher(), const key_equal &__eql=key_equal(), const allocator_type &__a=allocator_type()) | |
unordered_set (size_type __n, const allocator_type &__a) | |
unordered_set (size_type __n, const hasher &__hf, const allocator_type &__a) | |
template<typename _InputIterator > | |
unordered_set (_InputIterator __first, _InputIterator __last, size_type __n, const allocator_type &__a) | |
template<typename _InputIterator > | |
unordered_set (_InputIterator __first, _InputIterator __last, size_type __n, const hasher &__hf, const allocator_type &__a) | |
unordered_set (initializer_list< value_type > __l, size_type __n, const allocator_type &__a) | |
unordered_set (initializer_list< value_type > __l, size_type __n, const hasher &__hf, const allocator_type &__a) | |
void | clear () noexcept |
template<typename... _Args> | |
std::pair< iterator, bool > | emplace (_Args &&... __args) |
template<typename... _Args> | |
iterator | emplace_hint (const_iterator __it, _Args &&... __args) |
void | insert (std::initializer_list< value_type > __l) |
std::pair< iterator, bool > | insert (const value_type &__obj) |
iterator | insert (const_iterator __iter, const value_type &__v) |
std::pair< iterator, bool > | insert (value_type &&__obj) |
iterator | insert (const_iterator __iter, value_type &&__v) |
template<typename _InputIter > | |
void | insert (_InputIter __first, _InputIter __last) |
unordered_set & | operator= (const unordered_set &)=default |
unordered_set & | operator= (unordered_set &&)=default |
unordered_set & | operator= (initializer_list< value_type > __l) |
void | rehash (size_type __n) |
void | swap (unordered_set &__x) noexcept(noexcept(__x._M_base().swap(__x))) |
Protected Attributes | |
__gnu_profile::__hashfunc_info * | _M_hashfunc_info |
__gnu_profile::__container_size_info * | _M_size_info |
Unordered_set wrapper with performance instrumentation.
Definition at line 51 of file profile/unordered_set.