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 0cb9b26 commit 8b9acb3Copy full SHA for 8b9acb3
src/FSharpPlus/Control/Monoid.fs
@@ -38,9 +38,9 @@ type Plus =
38
#else
39
static member ``+`` (x: StringBuilder , y: StringBuilder , [<Optional>]_mthd: Plus ) = StringBuilder().Append(string x).Append(string y)
40
static member ``+`` (_: Id0 , _: Id0 , [<Optional>]_mthd: Plus ) = Id0 ""
41
- static member ``+`` (x: exn , y: exn , [<Optional>]_mthd: Plus ) =
+ static member ``+`` (x: exn , y: exn , [<Optional>]_mthd: Plus ) : exn =
42
let f (e: exn) = match e with :? AggregateException as a -> a.Data0 :> seq<_> | _ -> Seq.singleton e
43
- AggregateException (seq {yield! f x; yield! f y}) :> exn
+ AggregateException (seq {yield! f x; yield! f y})
44
#endif
45
46
static member inline Invoke (x: 'Plus) (y: 'Plus) : 'Plus =
0 commit comments