(comparator)
| 98 | // @pragma Composition |
| 99 | |
| 100 | sort(comparator) { |
| 101 | // Late binding |
| 102 | return OrderedMap(sortFactory(this, comparator)); |
| 103 | } |
| 104 | |
| 105 | sortBy(mapper, comparator) { |
| 106 | // Late binding |
nothing calls this directly
no test coverage detected