| 431 | void clear() { mTree.clear(); } |
| 432 | |
| 433 | fl::pair<const_iterator, bool> insert(const Key& key) { |
| 434 | return mTree.insert(key); |
| 435 | } |
| 436 | |
| 437 | fl::pair<const_iterator, bool> insert(Key&& key) { |
| 438 | return mTree.insert(fl::move(key)); |
no outgoing calls
no test coverage detected