(self: HashMap<K, V>)
| 1062 | |
| 1063 | /** @internal */ |
| 1064 | export const beginMutation = <K, V>(self: HashMap<K, V>): HashMap<K, V> => { |
| 1065 | const impl = self as HashMapImpl<K, V> |
| 1066 | return new HashMapImpl(true, impl._edit + 1, impl._root, impl._size) |
| 1067 | } |
| 1068 | |
| 1069 | /** @internal */ |
| 1070 | export const endMutation = <K, V>(self: HashMap<K, V>): HashMap<K, V> => { |