filterIndexedTo

inline fun <C : MutableCollection<in ComplexFloat>> ComplexFloatArray.filterIndexedTo(destination: C, predicate: (index: Int, ComplexFloat) -> Boolean): C
inline fun <C : MutableCollection<in ComplexDouble>> ComplexDoubleArray.filterIndexedTo(destination: C, predicate: (index: Int, ComplexDouble) -> Boolean): C

Appends all elements matching the given predicate to the given destination.

Parameters

predicate

function that takes the index of an element and the element itself and returns the result of predicate evaluation on the element.