func()

in syncedlru.go [108:116]


func (lru *SyncedLRU[K, V]) Peek(key K) (value V, ok bool) {
	hash := lru.lru.hash(key)

	lru.mu.Lock()
	value, ok = lru.lru.peek(hash, key)
	lru.mu.Unlock()

	return
}