flat Map Indexed To
inline fun <R, C : MutableCollection<in R>> ByteBuffer.flatMapIndexedTo(destination: C, transform: (index: Int, Byte) -> Iterable<R>): C
Content copied to clipboard
inline fun <R, C : MutableCollection<in R>> ShortBuffer.flatMapIndexedTo(destination: C, transform: (index: Int, Short) -> Iterable<R>): C
Content copied to clipboard
inline fun <R, C : MutableCollection<in R>> IntBuffer.flatMapIndexedTo(destination: C, transform: (index: Int, Int) -> Iterable<R>): C
Content copied to clipboard
inline fun <R, C : MutableCollection<in R>> LongBuffer.flatMapIndexedTo(destination: C, transform: (index: Int, Long) -> Iterable<R>): C
Content copied to clipboard
inline fun <R, C : MutableCollection<in R>> FloatBuffer.flatMapIndexedTo(destination: C, transform: (index: Int, Float) -> Iterable<R>): C
Content copied to clipboard
inline fun <R, C : MutableCollection<in R>> DoubleBuffer.flatMapIndexedTo(destination: C, transform: (index: Int, Double) -> Iterable<R>): C
Content copied to clipboard
inline fun <R, C : MutableCollection<in R>> CharBuffer.flatMapIndexedTo(destination: C, transform: (index: Int, Char) -> Iterable<R>): C
Content copied to clipboard
Appends all elements yielded from results of transform function being invoked on each element and its index in the original array, to the given destination.