sortedByDescending

inline fun <R : Comparable<R>> ComplexFloatArray.sortedByDescending(crossinline selector: (ComplexFloat) -> R?): List<ComplexFloat>
inline fun <R : Comparable<R>> ComplexDoubleArray.sortedByDescending(crossinline selector: (ComplexDouble) -> R?): List<ComplexDouble>

Returns a list of all elements sorted descending according to natural sort order of the value returned by specified selector function.