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
Currently, we print them as things like TimeSpan(00:00:00.000000000, 09:45:00.000000000). This can be nice since it's "readable" but it is frustrating if you need to copy-paste into a REPL or such. I think we should use a roundtrippable implementation.
One option if we are attached to the current printing is to print it like
help?> repr
search: repr replaceproperty! reinterpret repeat replace replace! replacefield!
repr(x; context=nothing)
Create a string from any value using the show function. You should not add
methods to repr; define a show method instead.
Currently, we print them as things like
TimeSpan(00:00:00.000000000, 09:45:00.000000000)
. This can be nice since it's "readable" but it is frustrating if you need to copy-paste into a REPL or such. I think we should use a roundtrippable implementation.One option if we are attached to the current printing is to print it like
(with quotes) and add a
TimeSpan(::AbstractString, ::AbstractString)
constructor to parse the strings.The text was updated successfully, but these errors were encountered: