aboutsummaryrefslogtreecommitdiff
path: root/internal/lru/entries.go
blob: 132f8f7e629e540b6347d7532e4709589c795798 (about) (plain) (blame)
1
2
3
4
5
6
7
package lru

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