pipe
Call Signature
Section titled “Call Signature”pipe<
A>(a):A
Defined in: Composition/pipe.ts:36
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
Parameters
Section titled “Parameters”A
Returns
Section titled “Returns”A
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B>(a,ab):B
Defined in: Composition/pipe.ts:37
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
Parameters
Section titled “Parameters”A
(a) => B
Returns
Section titled “Returns”B
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C>(a,ab,bc):C
Defined in: Composition/pipe.ts:38
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
Parameters
Section titled “Parameters”A
(a) => B
(b) => C
Returns
Section titled “Returns”C
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D>(a,ab,bc,cd):D
Defined in: Composition/pipe.ts:39
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
Parameters
Section titled “Parameters”A
(a) => B
(b) => C
(c) => D
Returns
Section titled “Returns”D
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E>(a,ab,bc,cd,de):E
Defined in: Composition/pipe.ts:45
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
Parameters
Section titled “Parameters”A
(a) => B
(b) => C
(c) => D
(d) => E
Returns
Section titled “Returns”E
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F>(a,ab,bc,cd,de,ef):F
Defined in: Composition/pipe.ts:52
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
Parameters
Section titled “Parameters”A
(a) => B
(b) => C
(c) => D
(d) => E
(e) => F
Returns
Section titled “Returns”F
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G>(a,ab,bc,cd,de,ef,fg):G
Defined in: Composition/pipe.ts:60
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
Parameters
Section titled “Parameters”A
(a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
Returns
Section titled “Returns”G
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H>(a,ab,bc,cd,de,ef,fg,gh):H
Defined in: Composition/pipe.ts:69
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
Parameters
Section titled “Parameters”A
(a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
Returns
Section titled “Returns”H
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I>(a,ab,bc,cd,de,ef,fg,gh,hi):I
Defined in: Composition/pipe.ts:79
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
Parameters
Section titled “Parameters”A
(a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
Returns
Section titled “Returns”I
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J>(a,ab,bc,cd,de,ef,fg,gh,hi,ij):J
Defined in: Composition/pipe.ts:90
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
Parameters
Section titled “Parameters”A
(a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
Returns
Section titled “Returns”J
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J,K>(a,ab,bc,cd,de,ef,fg,gh,hi,ij,jk):K
Defined in: Composition/pipe.ts:102
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
K
Parameters
Section titled “Parameters”A
(a) => B
(b) => C
(c) => D
(d) => E
(e) => F
(f) => G
(g) => H
(h) => I
(i) => J
(j) => K
Returns
Section titled “Returns”K
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J,K,L>(a,ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl):L
Defined in: Composition/pipe.ts:115
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
K
L
Parameters
Section titled “Parameters”A
(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”L
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J,K,L,M>(a,ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm):M
Defined in: Composition/pipe.ts:129
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
K
L
M
Parameters
Section titled “Parameters”A
(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”M
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J,K,L,M,N>(a,ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn):N
Defined in: Composition/pipe.ts:144
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
K
L
M
N
Parameters
Section titled “Parameters”A
(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”N
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O>(a,ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no):O
Defined in: Composition/pipe.ts:160
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
Parameters
Section titled “Parameters”A
(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”O
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P>(a,ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no,op):P
Defined in: Composition/pipe.ts:177
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Parameters
Section titled “Parameters”A
(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”P
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q>(a,ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no,op,pq):Q
Defined in: Composition/pipe.ts:195
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
Parameters
Section titled “Parameters”A
(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”Q
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R>(a,ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no,op,pq,qr):R
Defined in: Composition/pipe.ts:214
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
Parameters
Section titled “Parameters”A
(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”R
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S>(a,ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no,op,pq,qr,rs):S
Defined in: Composition/pipe.ts:234
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
Parameters
Section titled “Parameters”A
(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”S
Example
Section titled “Example”flow for creating reusable pipelines without an initial value
Call Signature
Section titled “Call Signature”pipe<
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T>(a,ab,bc,cd,de,ef,fg,gh,hi,ij,jk,kl,lm,mn,no,op,pq,qr,rs,st):T
Defined in: Composition/pipe.ts:255
Pipes a value through a series of functions from left to right. Each function receives the output of the previous function.
pipe is the primary way to compose operations in this library.
It makes code read top-to-bottom, left-to-right, which is more
intuitive for developers coming from imperative backgrounds.
Type Parameters
Section titled “Type Parameters”A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
Parameters
Section titled “Parameters”A
(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”T
Example
Section titled “Example”flow for creating reusable pipelines without an initial value