core
0.33.6
js
core
/
de.peekandpoke.kraft.streams.addons
/
fold
fold
js
fun
<
T
,
R
>
Stream
<
T
>
.
fold
(
initial
:
R
,
operation
:
(
acc
:
R
,
next
:
T
)
->
R
)
:
Stream
<
R
>
Folds the incoming values with the
operation
starting with the
initial
value.