libstdc++
|
A collision-chaining hash-based container.
Key | Key type. |
Mapped | Map type. |
Hash_Fn | Hashing functor. Default is __gnu_cxx::hash. |
Eq_Fn | Equal functor. Default std::equal_to<Key> |
_Alloc | Allocator type. |
Store_Hash | If key type stores extra metadata. Defaults to false. |
Comb_Hash_Fn | Combining hash functor. If Hash_Fn is not null_type, then this is the ranged-hash functor; otherwise, this is the range-hashing functor. XXX(See Design::Hash-Based Containers::Hash Policies.) Default direct_mask_range_hashing. |
Resize_Policy | Resizes hash. Defaults to hash_standard_resize_policy, using hash_exponential_size_policy and hash_load_check_resize_trigger. |
Bases are: detail::hash_eq_fn, Resize_Policy, detail::ranged_hash_fn, detail::types_traits. (Optional: detail::debug_map_base.)
Definition at line 140 of file cc_ht_map_.hpp.
anonymous enum |
Value stores hash, true or false.
Definition at line 201 of file cc_ht_map_.hpp.
bool __gnu_pbds::detail::cc_ht_map< Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, Store_Hash, Comb_Hash_Fn, Resize_Policy >::empty | ( | ) | const [inline] |
True if size() == 0.
Definition at line 52 of file cc_ht_map_.hpp.
Comb_Hash_Fn & __gnu_pbds::detail::cc_ht_map< Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, Store_Hash, Comb_Hash_Fn, Resize_Policy >::get_comb_hash_fn | ( | ) |
Return current comb_hash_fn.
Definition at line 70 of file cc_ht_map_.hpp.
const Comb_Hash_Fn & __gnu_pbds::detail::cc_ht_map< Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, Store_Hash, Comb_Hash_Fn, Resize_Policy >::get_comb_hash_fn | ( | ) | const |
Return current const comb_hash_fn.
Definition at line 76 of file cc_ht_map_.hpp.
Eq_Fn & __gnu_pbds::detail::cc_ht_map< Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, Store_Hash, Comb_Hash_Fn, Resize_Policy >::get_eq_fn | ( | ) |
Return current eq_fn.
Definition at line 58 of file cc_ht_map_.hpp.
const Eq_Fn & __gnu_pbds::detail::cc_ht_map< Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, Store_Hash, Comb_Hash_Fn, Resize_Policy >::get_eq_fn | ( | ) | const |
Return current const eq_fn.
Definition at line 64 of file cc_ht_map_.hpp.
Hash_Fn & __gnu_pbds::detail::cc_ht_map< Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, Store_Hash, Comb_Hash_Fn, Resize_Policy >::get_hash_fn | ( | ) |
Return current hash_fn.
Definition at line 46 of file cc_ht_map_.hpp.
const Hash_Fn & __gnu_pbds::detail::cc_ht_map< Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, Store_Hash, Comb_Hash_Fn, Resize_Policy >::get_hash_fn | ( | ) | const |
Return current const hash_fn.
Definition at line 52 of file cc_ht_map_.hpp.
Resize_Policy & __gnu_pbds::detail::cc_ht_map< Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, Store_Hash, Comb_Hash_Fn, Resize_Policy >::get_resize_policy | ( | ) |
Return current resize_policy.
Definition at line 82 of file cc_ht_map_.hpp.
const Resize_Policy & __gnu_pbds::detail::cc_ht_map< Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, Store_Hash, Comb_Hash_Fn, Resize_Policy >::get_resize_policy | ( | ) | const |
Return current const resize_policy.
Definition at line 88 of file cc_ht_map_.hpp.