DIP 1019--Named Arguments Lite--Final Review
Daniel N
no at public.email
Fri Aug 23 11:24:25 UTC 2019
On Friday, 23 August 2019 at 10:54:11 UTC, Mike Parker wrote:
> DIP 1019, "Named Arguments Lite", is now ready for Final
> Review. This is the last chance for community feedback before
> the DIP is handed off to Walter and Átila for the Formal
> Assessment.
>
> Anyone intending to post feedback in this thread is expected to
> be familiar with the reviewer guidelines:
>
> https://github.com/dlang/DIPs/blob/master/docs/guidelines-reviewers.md
>
> The current revision of the DIP for this review is located here:
>
> https://github.com/dlang/DIPs/blob/3bc3469a841b87517a610f696689c8771e74d9e5/DIPs/DIP1019.md
>
> In it you'll find a link to and summary of the previous review
> rounds. This round of review will continue until 11:59 pm ET on
> September 6 unless I call it off before then.
>
> Thanks in advance for your participation.
I oppose the empty name feature...
"Parameter name omission
If a function is defined with some of its parameter names
omitted, arguments to those parameters can be labeled with an
empty name."
I don't see how it could be reasonably implemented, nor what
problem it solves.
Consider:
void fun(int, int);
fun(:1, :2); // ???
More information about the Digitalmars-d
mailing list