-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Remove the need for a callback to be passed to format_args! #20136
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
73751a3
to
defc033
Compare
d15b7f1
to
0517bba
Compare
This looks amazing @eddyb, really nice work! This is a somewhat-large structure to be passing around by value, could you make sure we're not giving up any perf with a benchmark or two? |
So I ended up on a wild goose chase. Or to be more precise, chasing the ghosts of nanoseconds. Turns out we generate the same IR - technically it differs, but only in ordering of the instructions. |
…g a wrapper block.
…ing a function with them.
Thanks for investigating this @eddyb! I'm excited for this to land! |
We have the technology: no longer do you need to write closures to use `format_args!`. This is a `[breaking-change]`, as it forces you to clean up old hacks - if you had code like this: ```rust format_args!(fmt::format, "{} {} {}", a, b, c) format_args!(|args| { w.write_fmt(args) }, "{} {} {}", x, y, z) ``` change it to this: ```rust fmt::format(format_args!("{} {} {}", a, b, c)) w.write_fmt(format_args!("{} {} {}", x, y, z)) ``` To allow them to be called with `format_args!(...)` directly, several functions were modified to take `fmt::Arguments` by value instead of by reference. Also, `fmt::Arguments` derives `Copy` now in order to preserve all usecases that were previously possible.
We have the technology: no longer do you need to write closures to use
format_args!
.This is a
[breaking-change]
, as it forces you to clean up old hacks - if you had code like this:change it to this:
To allow them to be called with
format_args!(...)
directly, several functions were modified totake
fmt::Arguments
by value instead of by reference. Also,fmt::Arguments
derivesCopy
now in order to preserve all usecases that were previously possible.