shithub: furgit

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

View raw version
package lru

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