(self: Micro<A, E, R>)
| 1269 | * @category mapping & sequencing |
| 1270 | */ |
| 1271 | export const asSome = <A, E, R>(self: Micro<A, E, R>): Micro<Option.Option<A>, E, R> => map(self, Option.some) |
| 1272 | |
| 1273 | /** |
| 1274 | * Swap the error and success types of the `Micro` effect. |