shithub: furgit

ref: 060e5b7063ec282627dde96ac028f0d40cf05c60
dir: /internal/lru/entries.go/

View raw version
package lru

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