(self: TMap.TMap<K, V>)
| 237 | |
| 238 | /** @internal */ |
| 239 | export const keys = <K, V>(self: TMap.TMap<K, V>): STM.STM<Array<K>> => |
| 240 | core.map(toReadonlyArray(self), RA.map((entry) => entry[0])) |
| 241 | |
| 242 | /** @internal */ |
| 243 | export const make = <K, V>(...entries: Array<readonly [K, V]>): STM.STM<TMap.TMap<K, V>> => fromIterable(entries) |
nothing calls this directly
no test coverage detected