chain
chain<
W,A,B>(f): (data) =>Logged<W,B>
Defined in: Core/Logged.ts:86
Sequences two Logged computations, concatenating their logs.
The value from the first is passed to f; the resulting log entries are
appended after the entries from the first.
Data-last — the first computation is the data being piped.
Type Parameters
Section titled “Type Parameters”W
A
B
Parameters
Section titled “Parameters”(a) => Logged<W, B>
Returns
Section titled “Returns”(
data):Logged<W,B>
Parameters
Section titled “Parameters”Logged<W, A>
Returns
Section titled “Returns”Logged<W, B>