Package: effect
Module: Effect
This function maps the error value of an Effect value to a Some value
in an Option value. If the original Effect value succeeds, the returned
Effect value will also succeed.
Signature
declare const asSomeError: <A, E, R>(self: Effect<A, E, R>) => Effect<A, Option.Option<E>, R>
Since v2.0.0