We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ca5365 commit 87a5d27Copy full SHA for 87a5d27
src/FSharpPlus/Extensions/Result.fs
@@ -32,7 +32,7 @@ module Result =
32
/// <param name="z">The third Result value.</param>
33
///
34
/// <returns>The combined value, or the first Error.</returns>
35
- let map3 f (x: Result<'T, 'Error>) (y: Result<'U, 'Error>) (z: Result<'V, 'Error>): Result<'V, 'Error> =
+ let map3 f (x: Result<'T, 'Error>) (y: Result<'U, 'Error>) (z: Result<'V, 'Error>) : Result<'W, 'Error> =
36
match x, y, z with
37
| Ok a, Ok b, Ok c -> Ok(f a b c)
38
| Error e, _, _
0 commit comments