flow
Call Signature
Section titled “Call Signature”flow<
A,B>(ab): (…a) =>B
Defined in: Composition/flow.ts:37
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
Parameters
Section titled “Parameters”(…a) => B
Returns
Section titled “Returns”(…
a):B
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”B
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C>(ab,bc): (…a) =>C
Defined in: Composition/flow.ts:40
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
Parameters
Section titled “Parameters”(…a) => B
(b) => C
Returns
Section titled “Returns”(…
a):C
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”C
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D>(ab,bc,cd): (…a) =>D
Defined in: Composition/flow.ts:44
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
Returns
Section titled “Returns”(…
a):D
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”D
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E>(ab,bc,cd,de): (…a) =>E
Defined in: Composition/flow.ts:49
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
Returns
Section titled “Returns”(…
a):E
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”E
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F>(ab,bc,cd,de,ef): (…a) =>F
Defined in: Composition/flow.ts:55
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
Returns
Section titled “Returns”(…
a):F
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”F
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G>(ab,bc,cd,de,ef,fg): (…a) =>G
Defined in: Composition/flow.ts:62
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
Returns
Section titled “Returns”(…
a):G
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”G
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H>(ab,bc,cd,de,ef,fg,gh): (…a) =>H
Defined in: Composition/flow.ts:70
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
Returns
Section titled “Returns”(…
a):H
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”H
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I>(ab,bc,cd,de,ef,fg,gh,hi): (…a) =>I
Defined in: Composition/flow.ts:79
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
Returns
Section titled “Returns”(…
a):I
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”I
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J>(ab,bc,cd,de,ef,fg,gh,hi,ij): (…a) =>J
Defined in: Composition/flow.ts:89
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
Returns
Section titled “Returns”(…
a):J
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”J
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J,K>(ab,bc,cd,de,ef,fg,gh,hi,ij,jk): (…a) =>K
Defined in: Composition/flow.ts:111
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
K
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
Returns
Section titled “Returns”(…
a):K
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”K
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J,K,L>(ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl): (…a) =>L
Defined in: Composition/flow.ts:135
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
K
L
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
(k) => L
Returns
Section titled “Returns”(…
a):L
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”L
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J,K,L,M>(ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm): (…a) =>M
Defined in: Composition/flow.ts:161
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
K
L
M
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
(k) => L
(l) => M
Returns
Section titled “Returns”(…
a):M
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”M
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J,K,L,M,N>(ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn): (…a) =>N
Defined in: Composition/flow.ts:189
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
K
L
M
N
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
(k) => L
(l) => M
(m) => N
Returns
Section titled “Returns”(…
a):N
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”N
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O>(ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no): (…a) =>O
Defined in: Composition/flow.ts:219
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
K
L
M
N
O
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
(k) => L
(l) => M
(m) => N
(n) => O
Returns
Section titled “Returns”(…
a):O
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”O
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P>(ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no,op): (…a) =>P
Defined in: Composition/flow.ts:251
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
(k) => L
(l) => M
(m) => N
(n) => O
(o) => P
Returns
Section titled “Returns”(…
a):P
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”P
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q>(ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no,op,pq): (…a) =>Q
Defined in: Composition/flow.ts:285
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
(k) => L
(l) => M
(m) => N
(n) => O
(o) => P
(p) => Q
Returns
Section titled “Returns”(…
a):Q
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”Q
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R>(ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no,op,pq,qr): (…a) =>R
Defined in: Composition/flow.ts:321
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
(k) => L
(l) => M
(m) => N
(n) => O
(o) => P
(p) => Q
(q) => R
Returns
Section titled “Returns”(…
a):R
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”R
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S>(ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no,op,pq,qr,rs): (…a) =>S
Defined in: Composition/flow.ts:359
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
(k) => L
(l) => M
(m) => N
(n) => O
(o) => P
(p) => Q
(q) => R
(r) => S
Returns
Section titled “Returns”(…
a):S
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”S
Example
Section titled “Example”pipe for immediate value transformation
Call Signature
Section titled “Call Signature”flow<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T>(ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no,op,pq,qr,rs,st): (…a) =>T
Defined in: Composition/flow.ts:399
Composes functions from left to right, returning a new function.
Unlike pipe, flow doesn’t take an initial value - it creates
a reusable pipeline that can be called later with arguments.
Use flow when you want to create a named, reusable transformation.
Use pipe when you want to immediately transform a value.
Type Parameters
Section titled “Type Parameters”A extends readonly unknown[]
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
Parameters
Section titled “Parameters”(…a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
(k) => L
(l) => M
(m) => N
(n) => O
(o) => P
(p) => Q
(q) => R
(r) => S
(s) => T
Returns
Section titled “Returns”(…
a):T
Parameters
Section titled “Parameters”…A
Returns
Section titled “Returns”T
Example
Section titled “Example”pipe for immediate value transformation