• 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

    • V

    Parameters

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

      Function to merge values when found a duplicate key.

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

          • newValue: V

          Returns ((oldValue) => V)

            • (oldValue): V
            • Parameters

              • oldValue: V

              Returns V

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

    A new Map made from the entries.

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

        • K

        Parameters

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

        Returns Map<K, V>

Generated using TypeDoc