* Returns true if value existed in set, false otherwise. * @param {T} value value to delete * @returns {boolean} true if value existed in set, false otherwise
(value)
| 65 | * @returns {boolean} true if value existed in set, false otherwise |
| 66 | */ |
| 67 | delete(value) { |
| 68 | this._invalidateCache(); |
| 69 | this._invalidateOrderedCache(); |
| 70 | return super.delete(value); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Describes how this clear operation behaves. |
no test coverage detected