shithub: furgit

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

View raw version
package lru

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