filter Indexed To
inline fun <C : MutableCollection<in ComplexFloat>> ComplexFloatArray.filterIndexedTo(destination: C, predicate: (index: Int, ComplexFloat) -> Boolean): C
Content copied to clipboard
inline fun <C : MutableCollection<in ComplexDouble>> ComplexDoubleArray.filterIndexedTo(destination: C, predicate: (index: Int, ComplexDouble) -> Boolean): C
Content copied to clipboard
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.