reverse method

Comparator<T> reverse()

reverse the sort order of this comparator

Implementation

Comparator<T> reverse() => (a, b) => this(b, a);