Remove entry with lowest expiration time
()
| 93 | |
| 94 | // Remove entry with lowest expiration time |
| 95 | func (h *indexedHeap) removeFirst() (key string, size uint) { //nolint:nonamedreturns // gocritic unnamedResult prefers naming returned key and size pair |
| 96 | return h.removeInternal(0) |
| 97 | } |