shithub: furgit

ref: 1734207266752b9464f42c31f7728a7e3c692c50
dir: /internal/lru/entries.go/

View raw version
package lru

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