| 176 | // invalidated by mutation of the data structure. |
| 177 | UnsortedIterator unsorted_begin() const { return elements_.begin(); } |
| 178 | UnsortedIterator unsorted_end() const { return elements_.begin() + size(); } |
| 179 | |
| 180 | // Accessor for comparator template argument. |
| 181 | Cmp *comparator() { return &cmp_; } |