• Transforms the Map with fail-able conversion mapper.

    Type Parameters

    • V

    • E

    • W

    Parameters

    • mapper: ((value) => Result<E, W>)

      Function to transform into W, but fail-able. If it returned Err, the value will be collected to errors.

    Returns (<K>(m) => [errors: Map<K, E>, oks: Map<K, W>])

    Two Maps, error values and ok values.

      • <K>(m): [errors: Map<K, E>, oks: Map<K, W>]
      • Type Parameters

        • K

        Parameters

        • m: Map<K, V>

        Returns [errors: Map<K, E>, oks: Map<K, W>]

Generated using TypeDoc