bind
AsyncResult.bind
('a -> Async<Result<'b, 'c>>)
-> Async<Result<'a, 'c>>
-> Async<Result<'b, 'c>>Examples
Example 1
let notifyFollowers : NotifyNewPostRequest -> Async<Result<unit,exn>>newPostRequestResult |> AsyncResult.bind notifyFollowersLast updated