(self: HM.HashMap<K, V>)
| 359 | |
| 360 | /** @internal */ |
| 361 | export const endMutation = <K, V>(self: HM.HashMap<K, V>): HM.HashMap<K, V> => { |
| 362 | ;(self as HashMapImpl<K, V>)._editable = false |
| 363 | return self |
| 364 | } |
| 365 | |
| 366 | /** @internal */ |
| 367 | export const mutate = Dual.dual< |
no outgoing calls
no test coverage detected