| 378 | |
| 379 | template<class P, class> |
| 380 | auto |
| 381 | object:: |
| 382 | insert(P&& p) -> |
| 383 | std::pair<iterator, bool> |
| 384 | { |
| 385 | key_value_pair v( |
| 386 | std::forward<P>(p), sp_); |
| 387 | return emplace_impl( v.key(), pilfer(v) ); |
| 388 | } |
| 389 | |
| 390 | template<class M> |
| 391 | auto |