| 396 | } |
| 397 | |
| 398 | TItem* GetLightest() { |
| 399 | FixHeap(); |
| 400 | |
| 401 | Y_ASSERT(!Heap.empty()); |
| 402 | |
| 403 | return Heap.front(); |
| 404 | } |
| 405 | |
| 406 | // This method doesn't remove items from the heap. |
| 407 | // Erased items are stored in Removed set |
no test coverage detected