Iterators
| 413 | |
| 414 | // Iterators |
| 415 | const_iterator begin() const { return mTree.begin(); } |
| 416 | const_iterator end() const { return mTree.end(); } |
| 417 | const_iterator cbegin() const { return mTree.cbegin(); } |
| 418 | const_iterator cend() const { return mTree.cend(); } |
no outgoing calls
no test coverage detected