|
rippled
|
#include <partitioned_unordered_map.h>

Classes | |
| struct | const_iterator |
| struct | iterator |
Public Types | |
| using | key_type = Key |
| using | mapped_type = Value |
| using | value_type = std::pair< Key const, mapped_type > |
| using | size_type = std::size_t |
| using | difference_type = std::size_t |
| using | hasher = Hash |
| using | key_equal = Pred |
| using | allocator_type = Alloc |
| using | reference = value_type & |
| using | const_reference = value_type const & |
| using | pointer = value_type * |
| using | const_pointer = value_type const * |
| using | map_type = std::unordered_map< key_type, mapped_type, hasher, key_equal, allocator_type > |
| using | partition_map_type = std::vector< map_type > |
Public Member Functions | |
| partitioned_unordered_map (std::optional< std::size_t > partitions=std::nullopt) | |
| std::size_t | partitions () const |
| partition_map_type & | map () |
| iterator | begin () |
| const_iterator | cbegin () const |
| const_iterator | begin () const |
| iterator | end () |
| const_iterator | cend () const |
| const_iterator | end () const |
| iterator | find (key_type const &key) |
| const_iterator | find (key_type const &key) const |
| template<class T , class U > | |
| std::pair< iterator, bool > | emplace (std::piecewise_construct_t const &, T &&keyTuple, U &&valueTuple) |
| template<class T , class U > | |
| std::pair< iterator, bool > | emplace (T &&key, U &&val) |
| void | clear () |
| iterator | erase (const_iterator position) |
| std::size_t | size () const |
| Value & | operator[] (Key const &key) |
Private Member Functions | |
| std::size_t | partitioner (Key const &key) const |
| template<class T > | |
| void | find (key_type const &key, T &it) const |
Static Private Member Functions | |
| template<class T > | |
| static void | end (T &it) |
| template<class T > | |
| static void | begin (T &it) |
Private Attributes | |
| std::size_t | partitions_ |
| partition_map_type | map_ {} |
Definition at line 55 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::key_type = Key |
Definition at line 60 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::mapped_type = Value |
Definition at line 61 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::value_type = std::pair<Key const, mapped_type> |
Definition at line 62 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::size_type = std::size_t |
Definition at line 63 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::difference_type = std::size_t |
Definition at line 64 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::hasher = Hash |
Definition at line 65 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::key_equal = Pred |
Definition at line 66 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::allocator_type = Alloc |
Definition at line 67 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::reference = value_type& |
Definition at line 68 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::const_reference = value_type const& |
Definition at line 69 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::pointer = value_type* |
Definition at line 70 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::const_pointer = value_type const* |
Definition at line 71 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::map_type = std:: unordered_map<key_type, mapped_type, hasher, key_equal, allocator_type> |
Definition at line 72 of file partitioned_unordered_map.h.
| using ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::partition_map_type = std::vector<map_type> |
Definition at line 74 of file partitioned_unordered_map.h.
| ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::partitioned_unordered_map | ( | std::optional< std::size_t > | partitions = std::nullopt | ) |
Definition at line 252 of file partitioned_unordered_map.h.
|
private |
Definition at line 224 of file partitioned_unordered_map.h.
|
staticprivate |
Definition at line 231 of file partitioned_unordered_map.h.
|
staticprivate |
Definition at line 239 of file partitioned_unordered_map.h.
| std::size_t ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::partitions | ( | ) | const |
Definition at line 268 of file partitioned_unordered_map.h.
| partition_map_type & ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::map | ( | ) |
Definition at line 274 of file partitioned_unordered_map.h.
| iterator ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::begin | ( | ) |
Definition at line 280 of file partitioned_unordered_map.h.
| const_iterator ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::cbegin | ( | ) | const |
Definition at line 288 of file partitioned_unordered_map.h.
| const_iterator ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::begin | ( | ) | const |
Definition at line 296 of file partitioned_unordered_map.h.
| iterator ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::end | ( | ) |
Definition at line 302 of file partitioned_unordered_map.h.
| const_iterator ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::cend | ( | ) | const |
Definition at line 310 of file partitioned_unordered_map.h.
| const_iterator ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::end | ( | ) | const |
Definition at line 318 of file partitioned_unordered_map.h.
|
private |
Definition at line 326 of file partitioned_unordered_map.h.
| iterator ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::find | ( | key_type const & | key | ) |
Definition at line 336 of file partitioned_unordered_map.h.
| const_iterator ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::find | ( | key_type const & | key | ) | const |
Definition at line 344 of file partitioned_unordered_map.h.
| std::pair< iterator, bool > ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::emplace | ( | std::piecewise_construct_t const & | , |
| T && | keyTuple, | ||
| U && | valueTuple | ||
| ) |
Definition at line 353 of file partitioned_unordered_map.h.
| std::pair< iterator, bool > ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::emplace | ( | T && | key, |
| U && | val | ||
| ) |
Definition at line 368 of file partitioned_unordered_map.h.
| void ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::clear | ( | ) |
Definition at line 379 of file partitioned_unordered_map.h.
| iterator ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::erase | ( | const_iterator | position | ) |
Definition at line 386 of file partitioned_unordered_map.h.
| std::size_t ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::size | ( | ) | const |
Definition at line 404 of file partitioned_unordered_map.h.
| Value & ripple::partitioned_unordered_map< Key, Value, Hash, Pred, Alloc >::operator[] | ( | Key const & | key | ) |
Definition at line 413 of file partitioned_unordered_map.h.
|
private |
Definition at line 57 of file partitioned_unordered_map.h.
|
mutableprivate |
Definition at line 419 of file partitioned_unordered_map.h.