| 139 | // Heapify from top element at index 0 in O(log n) complexity. It is |
| 140 | // assumed that the elements in [1, size_-1] are already arranged as a heap. |
| 141 | void IR_ALWAYS_INLINE HeapifyFromTop() { HeapifySubtreeDown(0, Size()); } |
| 142 | |
| 143 | protected: |
| 144 | // Move up elements starting at index i to maintain the heap property. |
no outgoing calls
no test coverage detected