• Transforms the Map with replacing keys. If there duplicate keys on replaced, the last one will take precedence.

    Type Parameters

    • K1

    • K2

    Parameters

    • mapper: ((key) => K2)

      Function to transform keys.

        • (key): K2
        • Parameters

          • key: K1

          Returns K2

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

    A new Map with new keys.

      • <V>(m): Map<K2, V>
      • Type Parameters

        • V

        Parameters

        • m: Map<K1, V>

        Returns Map<K2, V>

Generated using TypeDoc