• Creates a new Map from the array of dictionary entries. If there are duplicate keys, combiner will be called to merge two 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 ((arr) => Map<K, V>)

    A new Map made from the entries.

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

        • arr: readonly Tuple<K, V>[]

        Returns Map<K, V>

Generated using TypeDoc