shithub: furgit

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

View raw version
package lru

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