mapTo

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

Applies the given transform function to each element of the original array and appends the results to the given destination.