W3cubDocs

/Kotlin

flatMapTo

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
@JvmName("flatMapIterableTo") inline fun <T, R, C : MutableCollection<in R>> Sequence<T>.flatMapTo(
    destination: C, 
    transform: (T) -> Iterable<R>
): C
inline fun <T, R, C : MutableCollection<in R>> Sequence<T>.flatMapTo(
    destination: C, 
    transform: (T) -> Sequence<R>
): C

Appends all elements yielded from results of transform function being invoked on each element of original sequence, to the given destination.

The operation is terminal.

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/flat-map-to.html