in lru.go [499:505]
func (lru *LRU[K, V]) peek(hash uint32, key K) (value V, ok bool) { if pos, ok := lru.findKey(hash, key); ok { return lru.elements[pos].value, ok } return }