(self: Micro<A, E, R>)
| 1375 | * @category mapping & sequencing |
| 1376 | */ |
| 1377 | export const asVoid = <A, E, R>(self: Micro<A, E, R>): Micro<void, E, R> => flatMap(self, (_) => exitVoid) |
| 1378 | |
| 1379 | /** |
| 1380 | * Access the `MicroExit` of the given `Micro` effect. |
no outgoing calls
no test coverage detected
searching dependent graphs…