use native Julia code in round example #46841
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This
!!! note
section onround
introduces a concept or function not native to Julia code, where a better Julia solution could have been used:The
@sprintf
function introduced there complicates things for some number of reasons:Printf
module orC printf
style would not get the understanding of what that part is trying to do or explain. Sure they can lookup@sprintf
in the docs, but then they have to figure out what the%.20f
does and all that stuffs, just to understand the example.@sprintf
comes from (i.e. nousing Printf
is shown there, so users know its exported).Just to understand an example, and then one has to figure out all that sutff - Huh, I think its uncalled for. Why not just use Julia's
big
to show what's happening there, its same with the@sprintf
(just the difference being that@sprintf
shows the results in 20 digits after decimal point):