
Public Types | |
| typedef Key | key_type |
| typedef Data | data_type |
|
typedef std::pair< const key_type, data_type > | value_type |
| typedef int | size_type |
| typedef map_type::iterator | iterator |
| typedef map_type::const_iterator | const_iterator |
Public Member Functions | |
| iterator | begin () |
| Iterators. | |
| const_iterator | begin () const |
| iterator | end () |
| const_iterator | end () const |
| size_type | size () const |
| Map size. | |
| size_type | max_size () const |
| bool | empty () const |
| void | clear () |
| Insert/Delete elements. | |
| std::pair< iterator, bool > | insert (const value_type &value) |
| iterator | insert (iterator hint, const value_type &value) |
| template<class InputIterator> | |
| void | insert (InputIterator first, InputIterator last) |
| void | erase (iterator pos) |
| void | erase (iterator first, iterator last) |
| size_type | erase (const value_type &value) |
| iterator | find (const key_type &key) |
| Search. | |
| const_iterator | find (const key_type &key) const |
| size_type | count (const key_type &key) const |
| std::pair< iterator, iterator > | equal_range (const key_type &key) |
|
std::pair< const_iterator, const_iterator > | equal_range (const key_type &key) const |
| void | swap (ShHashMap &other) |
| Copy/assign. | |
| data_type & | operator[] (const key_type &key) |
Definition at line 73 of file ShHashMap.hpp.
1.4.5