* @method clear * @description - This method cleared the whole LFUCache * @returns {LFUCache}
()
| 226 | * @returns {LFUCache} |
| 227 | */ |
| 228 | clear() { |
| 229 | this.cache.clear() |
| 230 | this.#frequencyMap.clear() |
| 231 | |
| 232 | return this |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * @method toString |
no outgoing calls
no test coverage detected