Range func for lru cache

This commit is contained in:
世界 2022-06-26 11:09:06 +08:00
parent 99754098d1
commit 494a87e9ee
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -216,6 +216,14 @@ func (c *LruCache[K, V]) CloneTo(n *LruCache[K, V]) {
}
}
func (c *LruCache[K, V]) Range(block func(key K, value V)) {
c.mu.Lock()
defer c.mu.Unlock()
for le := c.lru.Front(); le != nil; le = le.Next() {
block(le.Value.key, le.Value.value)
}
}
func (c *LruCache[K, V]) get(key K) *entry[K, V] {
c.mu.Lock()
defer c.mu.Unlock()