|
Base::hasher | hash_funct () |
|
| node_hash_set () |
|
void | resize (typename Base::size_type hint) |
|
iterator | begin () |
|
const_iterator | begin () const |
|
size_t | bucket_count () const |
|
size_t | capacity () const |
|
const_iterator | cbegin () const |
|
const_iterator | cend () const |
|
ABSL_ATTRIBUTE_REINITIALIZES void | clear () |
|
bool | contains (const key_arg< K > &key) const |
|
size_t | count (const key_arg< K > &key) const |
|
std::pair< iterator, bool > | emplace (Args &&...args) |
|
std::pair< iterator, bool > | emplace (Args &&...args) |
|
iterator | emplace_hint (const_iterator, Args &&...args) |
|
bool | empty () const |
|
iterator | end () |
|
const_iterator | end () const |
|
std::pair< iterator, iterator > | equal_range (const key_arg< K > &key) |
|
std::pair< const_iterator, const_iterator > | equal_range (const key_arg< K > &key) const |
|
size_type | erase (const key_arg< K > &key) |
|
void | erase (const_iterator cit) |
|
void | erase (iterator it) |
|
iterator | erase (const_iterator first, const_iterator last) |
|
node_type | extract (const_iterator position) |
|
node_type | extract (const key_arg< K > &key) |
|
iterator | find (const key_arg< K > &key, size_t hash) |
|
iterator | find (const key_arg< K > &key) |
|
const_iterator | find (const key_arg< K > &key, size_t hash) const |
|
const_iterator | find (const key_arg< K > &key) const |
|
allocator_type | get_allocator () const |
|
hasher | hash_function () const |
|
std::pair< iterator, bool > | insert (T &&value) |
|
std::pair< iterator, bool > | insert (const T &value) |
|
std::pair< iterator, bool > | insert (init_type &&value) |
|
iterator | insert (const_iterator, T &&value) |
|
iterator | insert (const_iterator, const T &value) |
|
iterator | insert (const_iterator, init_type &&value) |
|
void | insert (InputIt first, InputIt last) |
|
void | insert (std::initializer_list< T > ilist) |
|
void | insert (std::initializer_list< init_type > ilist) |
|
insert_return_type | insert (node_type &&node) |
|
iterator | insert (const_iterator, node_type &&node) |
|
key_equal | key_eq () const |
|
iterator | lazy_emplace (const key_arg< K > &key, F &&f) |
|
float | load_factor () const |
|
float | max_load_factor () const |
|
void | max_load_factor (float) |
|
size_t | max_size () const |
|
void | merge (raw_hash_set< absl::container_internal::NodeHashSetPolicy< T >, H, E, Alloc > &src) |
|
void | merge (raw_hash_set< absl::container_internal::NodeHashSetPolicy< T >, H, E, Alloc > &&src) |
|
raw_hash_set & | operator= (const raw_hash_set &that) |
|
raw_hash_set & | operator= (raw_hash_set &&that) noexcept(absl::allocator_traits< allocator_type >::is_always_equal::value &&std::is_nothrow_move_assignable< hasher >::value &&std::is_nothrow_move_assignable< key_equal >::value) |
|
void | prefetch (const key_arg< K > &key) const |
|
| raw_hash_set () noexcept(std::is_nothrow_default_constructible< hasher >::value &&std::is_nothrow_default_constructible< key_equal >::value &&std::is_nothrow_default_constructible< allocator_type >::value) |
|
| raw_hash_set (size_t bucket_count, const hasher &hash=hasher(), const key_equal &eq=key_equal(), const allocator_type &alloc=allocator_type()) |
|
| raw_hash_set (size_t bucket_count, const hasher &hash, const allocator_type &alloc) |
|
| raw_hash_set (size_t bucket_count, const allocator_type &alloc) |
|
| raw_hash_set (const allocator_type &alloc) |
|
| raw_hash_set (InputIter first, InputIter last, size_t bucket_count=0, const hasher &hash=hasher(), const key_equal &eq=key_equal(), const allocator_type &alloc=allocator_type()) |
|
| raw_hash_set (InputIter first, InputIter last, size_t bucket_count, const hasher &hash, const allocator_type &alloc) |
|
| raw_hash_set (InputIter first, InputIter last, size_t bucket_count, const allocator_type &alloc) |
|
| raw_hash_set (InputIter first, InputIter last, const allocator_type &alloc) |
|
| raw_hash_set (std::initializer_list< T > init, size_t bucket_count=0, const hasher &hash=hasher(), const key_equal &eq=key_equal(), const allocator_type &alloc=allocator_type()) |
|
| raw_hash_set (std::initializer_list< init_type > init, size_t bucket_count=0, const hasher &hash=hasher(), const key_equal &eq=key_equal(), const allocator_type &alloc=allocator_type()) |
|
| raw_hash_set (std::initializer_list< T > init, size_t bucket_count, const hasher &hash, const allocator_type &alloc) |
|
| raw_hash_set (std::initializer_list< init_type > init, size_t bucket_count, const hasher &hash, const allocator_type &alloc) |
|
| raw_hash_set (std::initializer_list< T > init, size_t bucket_count, const allocator_type &alloc) |
|
| raw_hash_set (std::initializer_list< init_type > init, size_t bucket_count, const allocator_type &alloc) |
|
| raw_hash_set (std::initializer_list< T > init, const allocator_type &alloc) |
|
| raw_hash_set (std::initializer_list< init_type > init, const allocator_type &alloc) |
|
| raw_hash_set (const raw_hash_set &that) |
|
| raw_hash_set (const raw_hash_set &that, const allocator_type &a) |
|
| raw_hash_set (raw_hash_set &&that) noexcept(std::is_nothrow_copy_constructible< hasher >::value &&std::is_nothrow_copy_constructible< key_equal >::value &&std::is_nothrow_copy_constructible< allocator_type >::value) |
|
| raw_hash_set (raw_hash_set &&that, const allocator_type &a) |
|
void | rehash (size_t n) |
|
void | reserve (size_t n) |
|
size_t | size () const |
|
void | swap (raw_hash_set &that) noexcept(IsNoThrowSwappable< hasher >()&&IsNoThrowSwappable< key_equal >()&&(!AllocTraits::propagate_on_container_swap::value||IsNoThrowSwappable< allocator_type >())) |
|
| ~raw_hash_set () |
|
template<class T, class Hash = absl::container_internal::hash_default_hash<T>, class Eq = absl::container_internal::hash_default_eq<T>, class Alloc = std::allocator<T>>
class absl::node_hash_set< T, Hash, Eq, Alloc >
Definition at line 94 of file node_hash_set.h.