|
| unordered_multiset (size_type=boost::unordered::detail::default_bucket_count, const hasher &=hasher(), const key_equal &=key_equal(), const allocator_type &=allocator_type()) |
|
| unordered_multiset (allocator_type const &) |
|
template<class InputIt > |
| unordered_multiset (InputIt, InputIt) |
|
template<class InputIt > |
| unordered_multiset (InputIt, InputIt, size_type, const hasher &=hasher(), const key_equal &=key_equal()) |
|
template<class InputIt > |
| unordered_multiset (InputIt, InputIt, size_type, const hasher &, const key_equal &, const allocator_type &) |
|
| unordered_multiset (unordered_multiset const &) |
|
| unordered_multiset (unordered_multiset const &, allocator_type const &) |
|
| unordered_multiset (unordered_multiset &&other) BOOST_NOEXCEPT_IF(table |
|
| unordered_multiset (unordered_multiset &&, allocator_type const &) |
|
| unordered_multiset (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_multiset () BOOST_NOEXCEPT |
|
unordered_multiset & | operator= (unordered_multiset const &x) |
|
unordered_multiset & | operator= (unordered_multiset &&x) |
|
unordered_multiset & | 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_UNORDERED_RV_REF(value_type) x) |
|
iterator | insert (const_iterator hint, value_type const &x) |
|
iterator | insert (const_iterator hint, BOOST_UNORDERED_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_multiset &) |
|
hasher | hash_function () const |
|
key_equal | key_eq () const |
|
const_iterator | find (const key_type &) 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< 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) |
|