shithub: furgit

ref: 4a08059f07e43ed881c7665ec404251ae63adc3d
dir: /internal/lru/entries.go/

View raw version
package lru

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