map2

Validation.map2

Namespace: FsToolkit.ErrorHandling
Function Signature:
('a -> 'b -> 'c)
-> Result<'a, 'd list>
-> Result<'b, 'd list>
-> Result<'c, 'd list>
Like Result.map2, but collects the errors from both arguments.

Examples