Checks whether a value for the given key exists in the cache.
(key: K)
| 11 | export interface MemoizationCache<K, V> { |
| 12 | /** Checks whether a value for the given key exists in the cache. */ |
| 13 | has(key: K): boolean; |
| 14 | /** Returns the cached value associated with the given key, if present. */ |
| 15 | get(key: K): V | undefined; |
| 16 | /** Stores a value in the cache under the given key. */ |
no outgoing calls
no test coverage detected