@szilanor/stream
Preparing search index...
StreamLike
Interface StreamLike<T>
interface
StreamLike
<
T
>
{
"[asyncIterator]"
:
()
=>
AsyncIterator
<
T
>
;
"[iterator]"
:
()
=>
Iterator
<
T
>
;
collect
:
<
O
>
(
collector
:
CollectorFunction
<
T
,
O
>
)
=>
O
;
collectAsync
:
<
O
>
(
collector
:
AsyncCollectorFunction
<
T
,
O
>
)
=>
Promise
<
O
>
;
pipe
:
<
O
>
(
operation
:
OperationFunction
<
T
,
O
>
)
=>
StreamLike
<
O
>
;
pipeAsync
:
<
O
>
(
operation
:
AsyncOperationFunction
<
T
,
O
>
,
)
=>
AsyncStreamLike
<
O
>
;
}
Type Parameters
T
Hierarchy (
View Summary
)
AsyncStreamLike
<
T
>
Iterable
<
T
>
StreamLike
Implemented by
Stream
Index
Properties
[async
Iterator]
[iterator]
collect
collect
Async
pipe
pipe
Async
Properties
[async
Iterator]
"[asyncIterator]"
:
()
=>
AsyncIterator
<
T
>
[iterator]
"[iterator]"
:
()
=>
Iterator
<
T
>
collect
collect
:
<
O
>
(
collector
:
CollectorFunction
<
T
,
O
>
)
=>
O
collect
Async
collectAsync
:
<
O
>
(
collector
:
AsyncCollectorFunction
<
T
,
O
>
)
=>
Promise
<
O
>
pipe
pipe
:
<
O
>
(
operation
:
OperationFunction
<
T
,
O
>
)
=>
StreamLike
<
O
>
pipe
Async
pipeAsync
:
<
O
>
(
operation
:
AsyncOperationFunction
<
T
,
O
>
)
=>
AsyncStreamLike
<
O
>
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
[async
Iterator]
[iterator]
collect
collect
Async
pipe
pipe
Async
@szilanor/stream
Loading...