shithub: furgit

ref: dd027e1e5379019bfeffc48ff1274b5e05581ff3
dir: /internal/lru/entries.go/

View raw version
package lru

type entry[K comparable, V any] struct {
	key    K
	value  V
	weight int64
}