flat Map Indexed To
inline fun <R, C : MutableCollection<in R>> ComplexFloatArray.flatMapIndexedTo(destination: C, transform: (index: Int, ComplexFloat) -> Iterable<R>): C
Content copied to clipboard
inline fun <R, C : MutableCollection<in R>> ComplexDoubleArray.flatMapIndexedTo(destination: C, transform: (index: Int, ComplexDouble) -> 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.