• Transforms the Map with lossy conversion mapper.

    Type Parameters

    • K

    • V

    • W

    Parameters

    • mapper: ((key) => ((value) => Option<W>))

      Function to transform into W, but optional. If it returned None, the value will be dropped. Also the key will be passed to.

        • (key): ((value) => Option<W>)
        • Parameters

          • key: K

          Returns ((value) => Option<W>)

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

    A new transformed Map.

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

        • m: Map<K, V>

        Returns Map<K, W>

Generated using TypeDoc