()
| 364 | } |
| 365 | |
| 366 | clear() { |
| 367 | transaction(() => { |
| 368 | untracked(() => { |
| 369 | for (const key of this.keys()) { |
| 370 | this.delete(key) |
| 371 | } |
| 372 | }) |
| 373 | }) |
| 374 | } |
| 375 | |
| 376 | replace(values: IObservableMapInitialValues<K, V>): ObservableMap<K, V> { |
| 377 | // Implementation requirements: |
nothing calls this directly
no test coverage detected