We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks a lot for the package. Would you be opposed to having a line break at the end of show(to)? It is mildly annoying to have
show(to)
# test.jl using TimerOutputs to = TimerOutput() show(to) println("print this line")
produce
──────────────────────────────────────────────────────────────────── Time Allocations ─────────────────────── ──────────────────────── Tot / % measured: 643ms / 0.0% 38.4MiB / 0.0% Section ncalls time %tot avg alloc %tot avg ──────────────────────────────────────────────────────────────────── ────────────────────────────────────────────────────────────────────print this line
The text was updated successfully, but these errors were encountered:
I don't think it should, compare with e.g.
julia> show([1, 2, 3]); println("print this line") [1, 2, 3]print this line
Sorry, something went wrong.
Ah, I agree with the consistency point. And I see now that both
julia> println(to); println("print this line")
and
julia> print_timer(to); println("print this line")
do what I want. Nevermind, then - sorry.
No branches or pull requests
Thanks a lot for the package. Would you be opposed to having a line break at the end of
show(to)
? It is mildly annoying to haveproduce
The text was updated successfully, but these errors were encountered: