libstdc++
__gnu_pbds::cc_hash_table< Key, Mapped, Hash_Fn, Eq_Fn, Comb_Hash_Fn, Resize_Policy, Store_Hash, _Alloc > Class Template Reference
Inheritance diagram for __gnu_pbds::cc_hash_table< Key, Mapped, Hash_Fn, Eq_Fn, Comb_Hash_Fn, Resize_Policy, Store_Hash, _Alloc >:
[legend]

Public Types

typedef Comb_Hash_Fn comb_hash_fn
 
typedef cc_hash_tag container_category
 
typedef Eq_Fn eq_fn
 
typedef Hash_Fn hash_fn
 
typedef Resize_Policy resize_policy
 

Public Member Functions

 cc_hash_table ()
 
 cc_hash_table (const cc_hash_table &other)
 
 cc_hash_table (const hash_fn &h)
 
 cc_hash_table (const hash_fn &h, const eq_fn &e)
 
 cc_hash_table (const hash_fn &h, const eq_fn &e, const comb_hash_fn &ch)
 
 cc_hash_table (const hash_fn &h, const eq_fn &e, const comb_hash_fn &ch, const resize_policy &rp)
 
template<typename It >
 cc_hash_table (It first, It last)
 
template<typename It >
 cc_hash_table (It first, It last, const hash_fn &h)
 
template<typename It >
 cc_hash_table (It first, It last, const hash_fn &h, const eq_fn &e)
 
template<typename It >
 cc_hash_table (It first, It last, const hash_fn &h, const eq_fn &e, const comb_hash_fn &ch)
 
template<typename It >
 cc_hash_table (It first, It last, const hash_fn &h, const eq_fn &e, const comb_hash_fn &ch, const resize_policy &rp)
 
cc_hash_tableoperator= (const cc_hash_table &other)
 
void swap (cc_hash_table &other)
 

Detailed Description

template<typename Key, typename Mapped, typename Hash_Fn = typename detail::default_hash_fn<Key>::type, typename Eq_Fn = typename detail::default_eq_fn<Key>::type, typename Comb_Hash_Fn = detail::default_comb_hash_fn::type, typename Resize_Policy = typename detail::default_resize_policy<Comb_Hash_Fn>::type, bool Store_Hash = detail::default_store_hash, typename _Alloc = std::allocator<char>>
class __gnu_pbds::cc_hash_table< Key, Mapped, Hash_Fn, Eq_Fn, Comb_Hash_Fn, Resize_Policy, Store_Hash, _Alloc >

A collision-chaining hash-based associative container.

Template Parameters
KeyKey type.
MappedMap type.
Hash_FnHashing functor.
Eq_FnEqual functor.
Comb_Hash_FnCombining 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.)
Resize_PolicyResizes hash.
Store_HashIndicates whether the hash value will be stored along with each key. If Hash_Fn is null_type, then the container will not compile if this value is true
_AllocAllocator type.

Base tag choices are: cc_hash_tag.

Base is basic_hash_table.

Definition at line 204 of file assoc_container.hpp.


The documentation for this class was generated from the following file: