Insert always succeeds for multimap
| 314 | |
| 315 | // Insert always succeeds for multimap |
| 316 | iterator insert(const value_type& value) { |
| 317 | ValueWithId vwid(value, mNextId++); |
| 318 | auto result = mTree.insert(vwid); |
| 319 | return iterator(result.first); |
| 320 | } |
| 321 | |
| 322 | iterator insert(value_type&& value) { |
| 323 | ValueWithId vwid(fl::move(value), mNextId++); |