map2

AsyncResult.map2

Namespace: FsToolkit.ErrorHandling

Function Signature:

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

Examples

Note: Many use-cases requiring map operations can also be solved using the asyncResult computation expression.

Example 1

Given the functions

getFollowerIds : UserId -> Async<Result<UserId list, exn>>
createPost : CreatePostRequest -> Async<Result<PostId, exn>>

And the type

type NotifyNewPostRequest = 
  { UserIds : UserId list
    NewPostId : PostId }
  static member Create userIds newPostsId =
    {UserIds = userIds; NewPostId = newPostsId}

We can create a NotifyNewPostRequest using AsyncResult.map2 as below:

Last updated