Order

inline fun <Element> Order(crossinline comparator: (left: Element, right: Element) -> ComparisonResult): Order<Element>(source)
inline fun <Element> Order(comparator: Comparator<Element>): Order<Element>(source)

Order builder from a comparator that compares the left and right elements to each other.