-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sections using Base.Grisu need to be rewritten #24
Comments
Actually, I see from the News file changes that Grisu was replaced by Ryu in version 1.4
|
Luckily, it looks like a lot of the code can be simplified with the new |
What are you hoping |
Something like this: function showoff(x)
# trivial code
intermediate = Printf.nontrivial(...)
# trivial code
end
@test showoff(1e-39) == "1×10³⁹" For instance if |
Not that I can tell; it's really just for printing things to a buffer and it's pretty highly optimized for that, so it doesn't really do any decomposing. |
So one way or another we need to pass from |
Copy paste whatever you need from Grisu into here? |
Thanks @KristofferC ! |
As of JuliaLang/julia#32859
Base.Grisu
has been removed from Julia and the sections ofShowoff
that depend on Grisu will need to be rewritten, I believe.The text was updated successfully, but these errors were encountered: