| 1822 | |
| 1823 | template <typename... Args> |
| 1824 | iterator emplace_hint(const_iterator position, Args&&... args) { |
| 1825 | (void)position; |
| 1826 | return emplace(std::forward<Args>(args)...).first; |
| 1827 | } |
| 1828 | |
| 1829 | template <typename... Args> |
| 1830 | std::pair<iterator, bool> try_emplace(const key_type& key, Args&&... args) { |