(self: HM.HashMap<K, V>)
| 350 | |
| 351 | /** @internal */ |
| 352 | export const beginMutation = <K, V>(self: HM.HashMap<K, V>): HM.HashMap<K, V> => |
| 353 | makeImpl( |
| 354 | true, |
| 355 | (self as HashMapImpl<K, V>)._edit + 1, |
| 356 | (self as HashMapImpl<K, V>)._root, |
| 357 | (self as HashMapImpl<K, V>)._size |
| 358 | ) |
| 359 | |
| 360 | /** @internal */ |
| 361 | export const endMutation = <K, V>(self: HM.HashMap<K, V>): HM.HashMap<K, V> => { |
no test coverage detected