Evaluate the Maybe in a string-keyed record or object literal and collect the Just values in an equivalent structure.
Maybe
Just
This function turns a string-keyed record or object literal of Maybe "inside out". For example:
Record<string, Maybe<T>>
Maybe<Record<string, T>>
{ x: Maybe<T1>, y: Maybe<T2> }
Maybe<{ x: T1, y: T2 }>
Generated using TypeDoc
Evaluate the
Maybe
in a string-keyed record or object literal and collect theJust
values in an equivalent structure.