chainFirst
chainFirst<
A,B,C>(f): (data) =>These<C,B>
Defined in: Core/These.ts:162
Chains These computations by passing the first value to f. Second propagates unchanged; First and Both apply f to the first value.
Type Parameters
Section titled “Type Parameters”A
B
C
Parameters
Section titled “Parameters”(a) => These<C, B>
Returns
Section titled “Returns”(
data):These<C,B>
Parameters
Section titled “Parameters”These<A, B>
Returns
Section titled “Returns”These<C, B>