Substrate
Promoting `ComparisonResult` Functions to `(T, T) - Bool`
“@jckarter @lemire @cocoaphony @mpweiher @Ilseman @stephentyrone @aalonso128 @ericasadun Just kidding, works great! func asc(_ f: @escaping (T) -> (T) -> ComparisonResult) -> (T, T) -> Bool { return { f($0)($1) == .orderedAscending } } ["abc", "ABD"].sorted(by: asc(String.localizedCompare))”