chain
chain<
E,A,B>(f): (outcome) =>Outcome<E,B>
Defined in: Core/Op.ts:640
Chains Outcome computations. Runs f on Ok; Err and Nil pass through.
Type Parameters
Section titled “Type Parameters”E
A
B
Parameters
Section titled “Parameters”(a) => Outcome<E, B>
Returns
Section titled “Returns”(
outcome):Outcome<E,B>
Parameters
Section titled “Parameters”outcome
Section titled “outcome”Outcome<E, A>
Returns
Section titled “Returns”Outcome<E, B>