(self: Micro<A, E, R>)
| 2932 | * @category error handling |
| 2933 | */ |
| 2934 | export const either = <A, E, R>(self: Micro<A, E, R>): Micro<Either.Either<A, E>, never, R> => |
| 2935 | match(self, { onFailure: Either.left, onSuccess: Either.right }) |
| 2936 | |
| 2937 | /** |
| 2938 | * Retry the given `Micro` effect using the provided options. |