| 100 | |
| 101 | // Check if the heap is empty |
| 102 | bool IR_ALWAYS_INLINE Empty() const { return elements_.empty(); } |
| 103 | |
| 104 | // Get the begin iterator. |
| 105 | PriorityQueueIterator<T, C> Begin() { return PriorityQueueIterator<T, C>(this, 0); } |
no test coverage detected