Coercing an `Effect` to an `Option` API Inquiry

Is there a simple API I'm missing for coercing an Effect to an Option?

ie.
Effect.Effect<number, UnknownException> -> Option.Option<number>


Effect.option wraps the Option => Effect.Effect<Option.Option<number>>
Option.liftThrowable is close but I'd like to transform the result not the callable
Was this page helpful?