shithub: furgit

ref: 02645cbbc0704cd5e0fdb3b48be0c02eb5e3ab01
dir: /internal/lru/entries.go/

View raw version
package lru

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