Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 307 Bytes

File metadata and controls

17 lines (12 loc) · 307 Bytes

Validation.map3

Namespace: FsToolkit.ErrorHandling

Function Signature:

('a -> 'b -> 'c -> 'd)
  -> Result<'a, 'e list>
  -> Result<'b, 'e list>
  -> Result<'c, 'e list>
  -> Result<'d, 'e list>

Like Result.map3, but collects the errors from all arguments.

Examples