Inserts the key/value pair `e` into *this. The `inserted` field of the result will be true if the operation resulted in a new insertion, or false otherwise. */
| 668 | of the result will be true if the operation resulted in a new |
| 669 | insertion, or false otherwise. */ |
| 670 | insert_result insert(value_type e) |
| 671 | { |
| 672 | return insert( |
| 673 | detail::begin(e.key), detail::end(e.key), std::move(e.value)); |
| 674 | } |
| 675 | |
| 676 | /** Inserts the sequence of key/value pairs `[first, last)` into |
| 677 | *this. The `inserted` field of the result will be true if the |
no test coverage detected