• Transforms values in the Map by mapper.

    Type Parameters

    • K

    • A

    • B

    Parameters

    • mapper: ((key) => ((a) => B))

      Function to transform values. Also the key will be passed to.

        • (key): ((a) => B)
        • Parameters

          • key: K

          Returns ((a) => B)

            • (a): B
            • Parameters

              • a: A

              Returns B

    Returns ((ma) => Map<K, B>)

    A new Map with mapped values.

      • (ma): Map<K, B>
      • Parameters

        • ma: Map<K, A>

        Returns Map<K, B>

Generated using TypeDoc