| 1495 | } |
| 1496 | |
| 1497 | auto insert(value_type const& value) -> std::pair<iterator, bool> { |
| 1498 | return emplace(value); |
| 1499 | } |
| 1500 | |
| 1501 | auto insert(value_type&& value) -> std::pair<iterator, bool> { |
| 1502 | return emplace(std::move(value)); |
no test coverage detected