-
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
Add default!() macro to builtins #19389
Comments
Is there any reason this can’t just be a function in the prelude? That would save a character at every invocation and would have the added advantage of being able to specify the type (e.g., |
@P1start having it in the prelude is a perfectly reasonable thing to do. It might be even better than having it as a macro.
That doesn't work unless you add the use std::default::Default;
// ...
// somewhere later in the code
let foo = Bar { bar: Default::default() }; On a side note, if you define it as a function would this work? I haven't checked what should formally go on the other side of the Bar { foo: 8, ..default() } |
Any expression can go after the It would be nice if trait methods could be use std::default::Default::default;
let foo: Foo = default();
let bar: Bar = default();
let baz: Baz = default();
let qux: Qux = default(); |
|
I run into this across several files in my project, I have fields now and then on my structs that I don't care about much about and I want to initialize them to default... initialize them to default... to default.
You get the point.
I would like to suggest adding this macro to the builtins that makes using defaults slightly less painful.
The text was updated successfully, but these errors were encountered: