Function intersectionWithKey

  • 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

    • K

    • V1

    • V2 = V1

    • V3 = V1

    Parameters

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

      Function to merge values of them. Also the key will be passed to.

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

          • key: K

          Returns ((left) => ((right) => V3))

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

              • left: V1

              Returns ((right) => V3)

                • (right): V3
                • Parameters

                  • right: V2

                  Returns V3

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

    A new merged Map.

      • (left): ((right) => Map<K, V3>)
      • 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