• Makes an intersection, consisting entries which is in both of left and right. When picking up common key of them, combiner will be called to merge values of them.

    Type Parameters

    • V1

    • V2 = V1

    • V3 = V1

    Parameters

    • combiner: ((left) => ((right) => V3))

      Function to merge values of them.

        • (left): ((right) => V3)
        • Parameters

          • left: V1

          Returns ((right) => V3)

            • (right): V3
            • Parameters

              • right: V2

              Returns V3

    Returns (<K>(left) => ((right) => Map<K, V3>))

    A new merged Map.

      • <K>(left): ((right) => Map<K, V3>)
      • Type Parameters

        • K

        Parameters

        • left: Map<K, V1>

        Returns ((right) => Map<K, V3>)

          • (right): Map<K, V3>
          • Parameters

            • right: Map<K, V2>

            Returns Map<K, V3>

Generated using TypeDoc