Erase by iterator
| 350 | |
| 351 | // Erase by iterator |
| 352 | iterator erase(iterator pos) { |
| 353 | return iterator(mTree.erase(pos.mTreeIt)); |
| 354 | } |
| 355 | |
| 356 | // Also accept const_iterator for STL compatibility |
| 357 | iterator erase(const_iterator pos) { |
nothing calls this directly
no test coverage detected