Constructors

Synopses

Declared in <bslstp_hashmap.h>

Create an empty hash multimap.

Create an empty hash multimap with at least the specified __n buckets.

explicit
hash_multimap(size_type __n);

Create an empty hash multimap using the specified __a allocator.

explicit
hash_multimap(allocator_type const& __a);

Create a hash multimap with the specified bucket count and allocator.

Create a hash multimap with the specified bucket count and hasher.

hash_multimap(
    size_type __n,
    hasher const& __hf);

Copy‐construct a hash multimap using the specified allocator.

hash_multimap(
    _Self const& __x,
    allocator_type const& __a);

Create a hash multimap from the specified iterator range.

template<class _InputIterator>
hash_multimap(
    _InputIterator __f,
    _InputIterator __l);

Create a hash multimap with the specified bucket count, hasher, and allocator.

hash_multimap(
    size_type __n,
    hasher const& __hf,
    allocator_type const& __a);

Create a hash multimap from the specified iterator range.

template<class _InputIterator>
hash_multimap(
    _InputIterator __f,
    _InputIterator __l,
    size_type __n);

Create a hash multimap from the specified iterator range.

template<class _InputIterator>
hash_multimap(
    _InputIterator __f,
    _InputIterator __l,
    allocator_type const& __a);

Create a hash multimap with the specified bucket count, functors, and allocator.

hash_multimap(
    size_type __n,
    hasher const& __hf,
    key_equal const& __eql,
    allocator_type const& __a = allocator_type());

Create a hash multimap from the specified iterator range.

template<class _InputIterator>
hash_multimap(
    _InputIterator __f,
    _InputIterator __l,
    size_type __n,
    allocator_type const& __a);

Create a hash multimap from the specified iterator range.

template<class _InputIterator>
hash_multimap(
    _InputIterator __f,
    _InputIterator __l,
    size_type __n,
    hasher const& __hf);

Create a hash multimap from the specified iterator range.

template<class _InputIterator>
hash_multimap(
    _InputIterator __f,
    _InputIterator __l,
    size_type __n,
    hasher const& __hf,
    allocator_type const& __a);

Create a hash multimap from the specified iterator range.

template<class _InputIterator>
hash_multimap(
    _InputIterator __f,
    _InputIterator __l,
    size_type __n,
    hasher const& __hf,
    key_equal const& __eql,
    allocator_type const& __a = allocator_type());

Created with MrDocs