aboutsummaryrefslogtreecommitdiff
path: root/internal/lru/len.go
blob: bc05e3623ccc5acecccf6471668bed51cd82d16f (about) (plain) (blame)
1
2
3
4
5
6
package lru

// Len returns the number of cached entries.
func (cache *Cache[K, V]) Len() int {
	return len(cache.items)
}