This function turns a string-keyed record or object literal of Maybe or
AsyncMaybeLike "inside out". For example:
Record<string, AsyncMaybe<T>> becomes AsyncMaybe<Record<string, T>>{ x: AsyncMaybe<T1>, y: AsyncMaybe<T2> } becomes AsyncMaybe<{ x: T1, y: T2 }>Generated using TypeDoc
Concurrently evaluate the
MaybeorAsyncMaybeLikein a string-keyed record or object literal and collect theJustvalues in an equivalent structure.