sortedDescending method

KtList<T> sortedDescending()

Returns a list of all elements sorted descending according to their natural sort order.

Implementation

KtList<T> sortedDescending() => sortedWith(reverseOrder());