(self: STM.STM<A, E, R>)
| 186 | |
| 187 | /** @internal */ |
| 188 | export const commit = <A, E, R>(self: STM.STM<A, E, R>): Effect.Effect<A, E, R> => |
| 189 | unsafeAtomically(self, constVoid, constVoid) |
| 190 | |
| 191 | /** @internal */ |
| 192 | export const unsafeAtomically = <A, E, R>( |
nothing calls this directly
no test coverage detected