ref: 1734207266752b9464f42c31f7728a7e3c692c50
dir: /internal/lru/clear.go/
package lru
// Clear removes all entries from the cache.
func (cache *Cache[K, V]) Clear() {
for elem := cache.lru.Front(); elem != nil; {
next := elem.Next()
cache.removeElem(elem)
elem = next
}
}