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