* Checks whether an element with the specified key exists or not. Does * **not** update the entry's position in the eviction order. * * @param key The key to check. * @returns `true` if the cache contains the specified key, otherwise `false`. * * @example Checking for the existence
(key: K)
| 183 | * ``` |
| 184 | */ |
| 185 | override has(key: K): boolean { |
| 186 | return super.has(key); |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Gets the element with the specified key. |