• 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 Parameters

    • K

    • V

    Parameters

    • ord: {
          ordK: Ord<K, K>;
          ordV: Ord<V, V>;
      }
      • ordK: Ord<K, K>
      • ordV: Ord<V, V>

    Returns PartialOrd<Map<K, V>, Map<K, V>>

Generated using TypeDoc