| 190 | const_iterator begin() const { return const_iterator(mTree.begin()); } |
| 191 | const_iterator cbegin() const { return const_iterator(mTree.cbegin()); } |
| 192 | iterator end() { return iterator(mTree.end()); } |
| 193 | const_iterator end() const { return const_iterator(mTree.end()); } |
| 194 | const_iterator cend() const { return const_iterator(mTree.cend()); } |
| 195 |
no test coverage detected