empty (1) | explicit multiset (const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type()); |
---|---|
range (2) | template <class InputIterator> multiset (InputIterator first, InputIterator last, const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type()); |
copy (3) | multiset (const multiset& x); |
empty (1) | explicit multiset (const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type());explicit multiset (const allocator_type& alloc); |
---|---|
range (2) | template <class InputIterator> multiset (InputIterator first, InputIterator last, const key_compare& comp = key_compare(), const allocator_type& = allocator_type()); |
copy (3) | multiset (const multiset& x);multiset (const multiset& x, const allocator_type& alloc); |
move (4) | multiset (multiset&& x);multiset (multiset&& x, const allocator_type& alloc); |
initializer list (5) | multiset (initializer_list<value_type> il, const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type()); |
empty (1) | mutiset();explicit multiset (const key_compare& comp, const allocator_type& alloc = allocator_type());explicit multiset (const allocator_type& alloc); |
---|---|
range (2) | template <class InputIterator> multiset (InputIterator first, InputIterator last, const key_compare& comp = key_compare(), const allocator_type& = allocator_type());template <class InputIterator> multiset (InputIterator first, InputIterator last, const allocator_type& = allocator_type()); |
copy (3) | multiset (const multiset& x);multiset (const multiset& x, const allocator_type& alloc); |
move (4) | multiset (multiset&& x);multiset (multiset&& x, const allocator_type& alloc); |
initializer list (5) | multiset (initializer_list<value_type> il, const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type());multiset (initializer_list<value_type> il, const allocator_type& alloc = allocator_type()); |
|
|