shithub: furgit

ref: 65a6439638a18e4317e144a0117db7604a2f2940
dir: /internal/lru/entries.go/

View raw version
package lru

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