Inserts an element into the container using the copy operator */
| 426 | |
| 427 | /** Inserts an element into the container using the copy operator */ |
| 428 | bool insert(const KeyT &k, const ValueT &value) { |
| 429 | return emplace(k, value); |
| 430 | } |
| 431 | |
| 432 | /** Returns a reference to the value that is mapped to a key equivalent to |
| 433 | * key, performing an insertion if such key does not already exist. |
no test coverage detected