func()

in syncedlru.go [120:128]


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

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

	return
}