(keys)
| 70 | } |
| 71 | |
| 72 | deleteAll(keys) { |
| 73 | const collection = Collection(keys); |
| 74 | |
| 75 | if (collection.size === 0) { |
| 76 | return this; |
| 77 | } |
| 78 | |
| 79 | return this.withMutations((map) => { |
| 80 | collection.forEach((key) => map.remove(key)); |
| 81 | }); |
| 82 | } |
| 83 | |
| 84 | clear() { |
| 85 | if (this.size === 0) { |
nothing calls this directly
no test coverage detected