You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually, even FromTicks is affected probably because we transform from bigint to Number
printfn $"""Big TimeSpan value (WebSharper): %A{System.TimeSpan.FromTicks(9223372036854775807L).Ticks}Big TimeSpan value (.NET): 9223372036854775807L"""
Big TimeSpan value (WebSharper): 9223372036854769664
Big TimeSpan value (.NET): 9223372036854775807L
Hello,
This doesn't happens when creating
TimeSpan.FromTicks
because in this case we are usingBigInteger
.Fixing this issues will also open the possibility improve the precision supported by TimeSpan in Fable to be on par with .NET and Python
The text was updated successfully, but these errors were encountered: