dropLastWhile

inline fun ComplexFloatArray.dropLastWhile(predicate: (ComplexFloat) -> Boolean): List<ComplexFloat>
inline fun ComplexDoubleArray.dropLastWhile(predicate: (ComplexDouble) -> Boolean): List<ComplexDouble>

Returns a list containing all elements except last elements that satisfy the given predicate.