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

    Variable partialOrdConst

    partialOrd: <K, V>(
        ord: { ordK: TypeClass.Ord.Ord<K>; ordV: TypeClass.Ord.Ord<V> },
    ) => TypeClass.PartialOrd.PartialOrd<Map<K, V>> = ...

    Generates a partial order of Map<K, V> from the total orders of K and V.

    The reason why it requires Ords is the algorithm compares their entry in sorted order.

    Type Declaration