Package: effect
Module: Option
Similar to orElse, but returns an Either wrapped in an Option to
indicate the source of the value.
Details
This function allows you to provide a fallback Option in case the current
Option (self) is None. However, unlike orElse, it returns the value
wrapped in an Either object, providing additional information about where
the value came from:
Option (that), it is wrapped in an
Either.right.Option (self), it is wrapped in an
Either.left.This is especially useful when you need to differentiate between values
originating from the primary Option and those coming from the fallback,
while still maintaining the Option-style handling.
Signature
declare const orElseEither: { <B>(that: LazyArg<Option<B>>): <A>(self: Option<A>) => Option<Either<B, A>>; <A, B>(self: Option<A>, that: LazyArg<Option<B>>): Option<Either<B, A>>; }
Since v2.0.0