shithub: furgit

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

View raw version
package lru

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