onEach

fun <T> Sequence<T>.onEach(action: (T) -> Unit): Sequence<T>

Returns a sequence which performs the given action on each element of the original sequence as they pass through it.

The operation is intermediate and stateless.

Since Kotlin

1.1