okOrElseForMaybe
Transforms the Maybe<T>
into a Result<T, E>
by mapping T
to Ok(T)
.
If input
is undefined
or null
, then returns Err(E)
with the result of recoverer()
Transforms the Maybe<T>
into a Result<T, E>
by mapping T
to Ok(T)
.
If input
is undefined
or null
, then returns Err(E)
with the result of recoverer()