template<typename
Key, typename Value, typename Equal = fl::SmallMapEqualTo<Key>>
class fl::unordered_map_small< Key, Value, Equal >
Definition at line 32 of file unordered_map_small.h.
|
| | unordered_map_small ()=default |
| |
| | unordered_map_small (const Equal &eq, memory_resource *resource=nullptr) FL_NOEXCEPT |
| |
| | unordered_map_small (const unordered_map_small &other) FL_NOEXCEPT |
| |
| | unordered_map_small (memory_resource *resource) FL_NOEXCEPT |
| |
| | unordered_map_small (unordered_map_small &&other) FL_NOEXCEPT |
| |
| const Value & | at (const Key &key) const FL_NOEXCEPT |
| |
| Value & | at (const Key &key) FL_NOEXCEPT |
| |
| const_iterator | begin () const FL_NOEXCEPT |
| |
| iterator | begin () FL_NOEXCEPT |
| |
| size_type | capacity () const FL_NOEXCEPT |
| |
| const_iterator | cbegin () const FL_NOEXCEPT |
| |
| const_iterator | cend () const FL_NOEXCEPT |
| |
| void | clear () FL_NOEXCEPT |
| |
| void | compact () FL_NOEXCEPT |
| |
| bool | contains (const Key &key) const FL_NOEXCEPT |
| |
| size_type | count (const Key &key) const FL_NOEXCEPT |
| |
| template<typename... Args> |
| fl::pair< iterator, bool > | emplace (Args &&... args) FL_NOEXCEPT |
| |
| bool | empty () const FL_NOEXCEPT |
| |
| const_iterator | end () const FL_NOEXCEPT |
| |
| iterator | end () FL_NOEXCEPT |
| |
| size_type | erase (const Key &key) FL_NOEXCEPT |
| |
| iterator | erase (const_iterator pos) FL_NOEXCEPT |
| |
| iterator | erase (iterator pos) FL_NOEXCEPT |
| |
| const_iterator | find (const Key &key) const FL_NOEXCEPT |
| |
| iterator | find (const Key &key) FL_NOEXCEPT |
| |
| Value | get (const Key &key, const Value &defaultValue) const FL_NOEXCEPT |
| |
| bool | get (const Key &key, Value *out_value) const FL_NOEXCEPT |
| |
| memory_resource * | get_memory_resource () const FL_NOEXCEPT |
| |
| bool | has (const Key &key) const FL_NOEXCEPT |
| |
| bool | insert (const Key &key, const Value &value, insert_result *result=nullptr) FL_NOEXCEPT |
| |
| fl::pair< iterator, bool > | insert (const value_type &kv) FL_NOEXCEPT |
| |
| bool | insert (Key &&key, Value &&value, insert_result *result=nullptr) FL_NOEXCEPT |
| |
| fl::pair< iterator, bool > | insert (value_type &&kv) FL_NOEXCEPT |
| |
| fl::pair< iterator, bool > | insert_or_update (const Key &key, const Value &value) FL_NOEXCEPT |
| |
| key_equal | key_eq () const FL_NOEXCEPT |
| |
| size_type | max_size () const FL_NOEXCEPT |
| |
| bool | operator!= (const unordered_map_small &other) const FL_NOEXCEPT |
| |
| unordered_map_small & | operator= (const unordered_map_small &other) FL_NOEXCEPT |
| |
| unordered_map_small & | operator= (unordered_map_small &&other) FL_NOEXCEPT |
| |
| bool | operator== (const unordered_map_small &other) const FL_NOEXCEPT |
| |
| Value & | operator[] (const Key &key) FL_NOEXCEPT |
| |
| void | reserve (size_type n) FL_NOEXCEPT |
| |
| size_type | size () const FL_NOEXCEPT |
| |
| void | swap (unordered_map_small &other) FL_NOEXCEPT |
| |
| bool | update (const Key &key, const Value &value) FL_NOEXCEPT |
| |
| bool | update (const Key &key, Value &&value) FL_NOEXCEPT |
| |