• Inserts a new entry with the key and value to the Map object immutably. If there is already an entry with the key, combiner will be called to merge their values.

    Type Parameters

    • K

    • V

    Parameters

    • combiner: ((key) => ((newValue) => ((oldValue) => V)))

      Function to merge values when found a duplicate key. Also the duplicated key will be passed.

        • (key): ((newValue) => ((oldValue) => V))
        • Parameters

          • key: K

          Returns ((newValue) => ((oldValue) => V))

            • (newValue): ((oldValue) => V)
            • Parameters

              • newValue: V

              Returns ((oldValue) => V)

                • (oldValue): V
                • Parameters

                  • oldValue: V

                  Returns V

    Returns ((key) => ((value) => ((m) => Map<K, V>)))

    A new one with the inserted entry.

      • (key): ((value) => ((m) => Map<K, V>))
      • Parameters

        • key: K

        Returns ((value) => ((m) => Map<K, V>))

          • (value): ((m) => Map<K, V>)
          • Parameters

            • value: V

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

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

                • m: Map<K, V>

                Returns Map<K, V>

Generated using TypeDoc