compound method

Ordering<T> compound(
  1. Ordering<T> other
)

Returns an ordering that breaks the tie of the receiver by using other.

Implementation

Ordering<T> compound(Ordering<T> other) => CompoundOrdering<T>([this, other]);