shithub: furgit

ref: 85f1212724e037e6934203f04a3f6231ac609503
dir: /internal/lru/entries.go/

View raw version
package lru

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