Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 343 Bytes

File metadata and controls

23 lines (15 loc) · 343 Bytes

Result.ofChoice

Namespace: FsToolkit.ErrorHandling

Transforms F#'s Choice value to Result.

Function Signature

Choice<'a,'b> -> Result<'a, 'b>

Examples

Example 1

Result.ofChoice (Choice1Of2 42)
// Ok 42

Result.ofChoice (Choice2Of2 "Something went wrong!") 
// Error "Something went wrong!"