(self: HashMap<K, V>)
| 1068 | |
| 1069 | /** @internal */ |
| 1070 | export const endMutation = <K, V>(self: HashMap<K, V>): HashMap<K, V> => { |
| 1071 | const impl = self as HashMapImpl<K, V> |
| 1072 | impl._editable = false |
| 1073 | return self |
| 1074 | } |
| 1075 | |
| 1076 | /** @internal */ |
| 1077 | export const mutate = dual< |