|
| | unordered_multimap (size_type=boost::unordered::detail::default_bucket_count, const hasher &=hasher(), const key_equal &=key_equal(), const allocator_type &=allocator_type()) |
| |
| | unordered_multimap (allocator_type const &) |
| |
| template<class InputIt > |
| | unordered_multimap (InputIt, InputIt) |
| |
| template<class InputIt > |
| | unordered_multimap (InputIt, InputIt, size_type, const hasher &=hasher(), const key_equal &=key_equal()) |
| |
| template<class InputIt > |
| | unordered_multimap (InputIt, InputIt, size_type, const hasher &, const key_equal &, const allocator_type &) |
| |
| | unordered_multimap (unordered_multimap const &) |
| |
| | unordered_multimap (unordered_multimap const &, allocator_type const &) |
| |
| | unordered_multimap (unordered_multimap &&other) BOOST_NOEXCEPT_IF(table |
| |
| | unordered_multimap (unordered_multimap &&, allocator_type const &) |
| |
| | unordered_multimap (std::initializer_list< value_type >, size_type=boost::unordered::detail::default_bucket_count, const hasher &=hasher(), const key_equal &l=key_equal(), const allocator_type &=allocator_type()) |
| |
| | ~unordered_multimap () BOOST_NOEXCEPT |
| |
| unordered_multimap & | operator= (unordered_multimap const &x) |
| |
| unordered_multimap & | operator= (unordered_multimap &&x) |
| |
| unordered_multimap & | operator= (std::initializer_list< value_type >) |
| |
| allocator_type | get_allocator () const BOOST_NOEXCEPT |
| |
| bool | empty () const BOOST_NOEXCEPT |
| |
| size_type | size () const BOOST_NOEXCEPT |
| |
| size_type | max_size () const BOOST_NOEXCEPT |
| |
| iterator | begin () BOOST_NOEXCEPT |
| |
| const_iterator | begin () const BOOST_NOEXCEPT |
| |
| iterator | end () BOOST_NOEXCEPT |
| |
| const_iterator | end () const BOOST_NOEXCEPT |
| |
| const_iterator | cbegin () const BOOST_NOEXCEPT |
| |
| const_iterator | cend () const BOOST_NOEXCEPT |
| |
| template<class... Args> |
| iterator | emplace (BOOST_FWD_REF(Args)...args) |
| |
| template<class... Args> |
| iterator | emplace_hint (const_iterator, BOOST_FWD_REF(Args)...args) |
| |
| iterator | insert (value_type const &x) |
| |
| iterator | insert (BOOST_RV_REF(value_type) x) |
| |
| iterator | insert (const_iterator hint, value_type const &x) |
| |
| iterator | insert (const_iterator hint, BOOST_RV_REF(value_type) x) |
| |
| template<class InputIt > |
| void | insert (InputIt, InputIt) |
| |
| void | insert (std::initializer_list< value_type >) |
| |
| iterator | erase (const_iterator) |
| |
| size_type | erase (const key_type &) |
| |
| iterator | erase (const_iterator, const_iterator) |
| |
| void | quick_erase (const_iterator it) |
| |
| void | erase_return_void (const_iterator it) |
| |
| void | clear () |
| |
| void | swap (unordered_multimap &) |
| |
| hasher | hash_function () const |
| |
| key_equal | key_eq () const |
| |
| iterator | find (const key_type &) |
| |
| const_iterator | find (const key_type &) const |
| |
| template<class CompatibleKey , class CompatibleHash , class CompatiblePredicate > |
| iterator | find (CompatibleKey const &, CompatibleHash const &, CompatiblePredicate const &) |
| |
| template<class CompatibleKey , class CompatibleHash , class CompatiblePredicate > |
| const_iterator | find (CompatibleKey const &, CompatibleHash const &, CompatiblePredicate const &) const |
| |
| size_type | count (const key_type &) const |
| |
| std::pair< iterator, iterator > | equal_range (const key_type &) |
| |
std::pair< const_iterator,
const_iterator > | equal_range (const key_type &) const |
| |
| size_type | bucket_count () const BOOST_NOEXCEPT |
| |
| size_type | max_bucket_count () const BOOST_NOEXCEPT |
| |
| size_type | bucket_size (size_type) const |
| |
| size_type | bucket (const key_type &k) const |
| |
| local_iterator | begin (size_type n) |
| |
| const_local_iterator | begin (size_type n) const |
| |
| local_iterator | end (size_type) |
| |
| const_local_iterator | end (size_type) const |
| |
| const_local_iterator | cbegin (size_type n) const |
| |
| const_local_iterator | cend (size_type) const |
| |
| float | max_load_factor () const BOOST_NOEXCEPT |
| |
| float | load_factor () const BOOST_NOEXCEPT |
| |
| void | max_load_factor (float) BOOST_NOEXCEPT |
| |
| void | rehash (size_type) |
| |
| void | reserve (size_type) |
| |