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 7f96131 commit ee6c4c0Copy full SHA for ee6c4c0
src/FSharpPlus/Control/Monoid.fs
@@ -29,6 +29,7 @@ type Plus =
29
30
#if NET6_0_OR_GREATER
31
static member ``+`` (x: DateOnly , y: DateOnly , [<Optional>]_mthd: Plus ) = DateOnly.FromDayNumber (x.DayNumber + y.DayNumber)
32
+ static member ``+`` (x: TimeOnly , y: TimeOnly , [<Optional>]_mthd: Plus ) = (x.Ticks + y.Ticks) % 864000000000L |> TimeOnly
33
#endif
34
35
static member ``+`` (x: Set<_> , y , [<Optional>]_mthd: Plus ) = Set.union x y
0 commit comments