map
JobResult.map
Namespace: FsToolkit.ErrorHandling
Function Signature:
('a -> 'b) -> Job<Result<'a, 'c>> -> Job<Result<'b, 'c>>
Examples
Note: Many use-cases requiring map
operations can also be solved using the jobResult
computation expression.
Example 1
As a continuation of Result.map3 Example 2, let's assume that we want to store the created post in the database using the function
savePost : CreatePostRequest -> Job<Result<PostId, exn>>
We can save the post and return its inner using JobResult.map
:
let rawPostId : Job<Result<Guid, exn>> =
savePost createPostRequest
|> JobResult.map (fun (PostId postId) -> postId)
Last updated