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
Sometimes it would be nice to have something like
@timeit ["A", "1"] begin # ... end @timeit ["A", "2"] begin # ... end
instead of having to write
@timeit "A" begin @timeit "1" begin # ... end end @timeit "A" begin @timeit "2" begin # ... end end
or
@timeit "A" begin @timeit "1" begin # ... end @timeit "2" begin # ... end end
if you don't have any other code in between "1" and "2".
The text was updated successfully, but these errors were encountered:
Perhaps
@timeit to["A"] "1" begin # ... end @timeit to["A"] "2" begin # ... end
for the explicit to case and
to
@timeit ["A"] "1" begin # ... end @timeit ["A"] "2" begin # ... end
with the default timer?
Sorry, something went wrong.
No branches or pull requests
Sometimes it would be nice to have something like
instead of having to write
or
if you don't have any other code in between "1" and "2".
The text was updated successfully, but these errors were encountered: