• Combines two Maps into another one. If there are duplicate keys, their value will be merged with combiner.

    Type Parameters

    • V

    Parameters

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

      Function to merge left and right values where entries have duplicate key.

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

          • left: V

          Returns ((right) => V)

            • (right): V
            • Parameters

              • right: V

              Returns V

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

    A new Map with entries came from both of them.

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

        • K

        Parameters

        • left: Map<K, V>

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

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

            • right: Map<K, V>

            Returns Map<K, V>

Generated using TypeDoc