(self: Micro<A, E, R>)
| 1384 | * @category mapping & sequencing |
| 1385 | */ |
| 1386 | export const exit = <A, E, R>(self: Micro<A, E, R>): Micro<MicroExit<A, E>, never, R> => |
| 1387 | matchCause(self, { |
| 1388 | onFailure: exitFailCause, |
| 1389 | onSuccess: exitSucceed |
| 1390 | }) |
| 1391 | |
| 1392 | /** |
| 1393 | * Replace the error type of the given `Micro` with the full `MicroCause` object. |
no outgoing calls
no test coverage detected
searching dependent graphs…