W3cubDocs

/Kotlin

flatMap

fun <T, R> Sequence<T>.flatMap(
    transform: (T) -> Sequence<R>
): Sequence<R>

Returns a single sequence of all elements from results of transform function being invoked on each element of original sequence.

The operation is intermediate and stateless.

© 2010–2018 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/flat-map.html