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 f646f98 commit 2500644Copy full SHA for 2500644
src/FSharpPlus/Control/Monad.fs
@@ -93,7 +93,7 @@ type Join =
93
static member Join (x: list<list<_>> , [<Optional>]_output: list<'T> , [<Optional>]_mthd: Join ) = List.concat x : list<'T>
94
static member Join (x: _ [][] , [<Optional>]_output: 'T [] , [<Optional>]_mthd: Join ) = Array.concat x : 'T []
95
static member Join (g , [<Optional>]_output: 'R->'T , [<Optional>]_mthd: Join ) = (fun r -> (g r) r) : 'R->'T
96
- static member inline Join (m1, (m2, x) , [<Optional>]_output: 'Monoid * 'T , [<Optional>]_mthd: Join ) = Plus.Invoke m1 m2, x : 'Monoid*'T
+ static member inline Join ((m1, (m2, x)) , [<Optional>]_output: 'Monoid * 'T , [<Optional>]_mthd: Join ) = Plus.Invoke m1 m2, x : 'Monoid*'T
97
static member inline Join (struct (m1, struct (m2, x)), [<Optional>]_output: struct ('Monoid * 'T), [<Optional>]_mthd: Join) = Plus.Invoke m1 m2, x : struct ('Monoid * 'T)
98
static member Join (x , [<Optional>]_output: Async<'T> , [<Optional>]_mthd: Join ) = async.Bind (x, id) : Async<'T>
99
static member Join (x , [<Optional>]_output: Result<'T,'E> , [<Optional>]_mthd: Join ) = Result.flatten x : Result<'T,'E>
0 commit comments