maybe
maybe<
A>(inner):Combinable<Maybe<A>>
Defined in: Core/Combinable.ts:89
Lifts a Combinable<A> to Combinable<Maybe<A>>. None is the neutral element —
combining with None on either side returns the other value unchanged.
Two Some values combine their inner values using the inner Combinable.
Type Parameters
Section titled “Type Parameters”A
Parameters
Section titled “Parameters”Combinable<A>
Returns
Section titled “Returns”Combinable<Maybe<A>>