map3
Namespace: FsToolkit.ErrorHandling
Function Signature
Examples
Note: Many use-cases requiring map
operations can also be solved using the task
computation expression.
Example 1
Let's assume that we have an add
function that adds three numbers:
And an another function that asynchronously retrieves an integer, say a person's age:
With the help of Result.map3
function, we can now do the following:
Last updated