kotlin-stdlib
Common
kotlin-stdlib
/
kotlin.sequences
/
forEach
for
Each
inline
fun
<
T
>
Sequence
<
T
>
.
forEach
(
action
:
(
T
)
->
Unit
)
(
source
)
Performs the given
action
on each element.
The operation is
terminal
.