ignore
AsyncResult.ignore
Namespace: FsToolkit.ErrorHandling
Function Signature:
Async<Result<'a, 'b>> -> Async<Result<unit, 'b>>This is a shortcut for AsyncResult.map ignore.
Examples
Example 1
let savePost : CreatePostRequest -> Async<Result<PostId, exn>>We can call this with the do! syntax inside a computation expression using AsyncResult.ignore as below:
let makePost = asyncResult {
do! savePost createPostRequest |> AsyncResult.ignore
}Last updated