@mikuroxina/mini-fn
    Preparing search index...

    Type Alias Ord<Lhs, Rhs>

    Ord: TypeClass.PartialOrd.PartialOrd<Lhs, Rhs> & TypeClass.Eq.Eq<Lhs, Rhs> & {
        cmp: (lhs: Lhs, rhs: Rhs) => Ordering.Ordering;
    }

    All instances of Ord must satisfy following conditions:

    • Transitivity: If f is Ord, for all a, b and c; f(a, b) == f(b, c) == f(a, c).
    • Duality: If f is Ord, for all a and b; f(a, b) == -f(b, a).
    • Strict: Ordering for all values is well-defined (so the return value is not an Option).

    Type Parameters