mapIndexedTo

inline fun <R, C : MutableCollection<in R>> ComplexFloatArray.mapIndexedTo(destination: C, transform: (index: Int, ComplexFloat) -> R): C
inline fun <R, C : MutableCollection<in R>> ComplexDoubleArray.mapIndexedTo(destination: C, transform: (index: Int, ComplexDouble) -> R): C

Applies the given transform function to each element and its index in the original array and appends the results to the given destination.

Parameters

transform

function that takes the index of an element and the element itself and returns the result of the transform applied to the element.