@ExperimentalUnsignedTypes inline fun <R> UIntArray.flatMap( transform: (UInt) -> Iterable<R> ): List<R>
@ExperimentalUnsignedTypes inline fun <R> ULongArray.flatMap( transform: (ULong) -> Iterable<R> ): List<R>
@ExperimentalUnsignedTypes inline fun <R> UByteArray.flatMap( transform: (UByte) -> Iterable<R> ): List<R>
@ExperimentalUnsignedTypes inline fun <R> UShortArray.flatMap( transform: (UShort) -> Iterable<R> ): List<R>
Returns a single list of all elements yielded from results of transform function being invoked on each element of original array.
Returns a single list of all elements yielded from results of transform function being invoked on each element of original collection.
Returns a single list of all elements yielded from results of transform function being invoked on each entry of original map.
© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/flat-map.html