kotlin-stdlib / kotlin.sequences / onEach onEach Common JVM JS Native 1.1 fun < T > Sequence < T > . onEach ( action : ( T ) -> Unit ) : Sequence < T > (source) 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 .