"A comparator which orders elements in decreasing order
according to the `Comparable` returned by the given
`comparable()` function."
see (`function byIncreasing`)
shared Comparison byDecreasing<Element,Value>(Value comparable(Element e))
(Element x, Element y)
given Value satisfies Comparable<Value>
=> comparable(y)<=>comparable(x);