Seems to me, Peter, that you could implement the call to ::eatargs' C implementation from within a new command, so the overhead would be negligible. The additional benefit would be that other command forms could use the same arg protocol.
The only thing you wouldn't have is ::proc redefined before a ::rename. Would that be a deal-breaker?
Colin
The original point to this proposal was that named arguments are a far more maintainable approach to program design than proc’s optional positional arguments. We have seen too many bugs in our code and other people’s code as well due to simply losing track of the number and order of optional arguments. There are few if any Tcl commands that use the syntax that proc encourages, and for good reason.
Implementing special case code for argument processing in C is lightweight and efficient, and it’s about as easy as implementing optional positional arguments... so where named arguments are easy to do they are overwhelmingly preferred.
So this proposal, to make it as easy and preferred as in C.
Adding overhead for this code, even the conceptual overhead of having to use a different proc command, will mean that the inefficient and buggy optional positional parameters will remain the default.
This has been brought up in the previous discussion on a number of occasions, but I will just re-iterate it. Improving proc to make procs a peer with native-C commands will be a game-changer and will, over time, massively improve the reliability and robustness of Tcl code.
The original point to this proposal was that named arguments are a far more maintainable approach to program design than proc’s optional positional arguments.
We have seen too many bugs in our code and other people’s code as well due to simply losing track of the number and order of optional arguments.
There are few if any Tcl commands that use the syntax that proc encourages, and for good reason.
Implementing special case code for argument processing in C is lightweight and efficient, and it’s about as easy as implementing optional positional arguments... so where named arguments are easy to do they are overwhelmingly preferred.
So this proposal, to make it as easy and preferred as in C.
Adding overhead for this code, even the conceptual overhead of having to use a different proc command, will mean that the inefficient and buggy optional positional parameters will remain the default.
This has been brought up in the previous discussion on a number of occasions, but I will just re-iterate it. Improving proc to make procs a peer with native-C commands will be a game-changer and will, over time, massively improve the reliability and robustness of Tcl code.
"Peer" is such a nice word. Susceptible to so many possible interpretations. So many that I would be loathe to use it in the connection you have, lest I waltz myself into thinking something that was untrue, or at least unexamined.
Pardon my ignorance, what precisely *did* you mean by it?
Colin
> You mean, I think, easy and preferred but completely *unlike* that of C, perhaps?
I don’t understand the point you’re making here. Are you misinterpreting my comment about Tcl commands implemented in C to be a comment on C syntax?
I would also repeat that the proposal does not impact existing procs in any way, and doesn’t change any existing use of the proc command. This was a long discussed, deliberated, and careful process that carefully avoids stepping on the existing proc syntax.
> I see no very useful useful definition of peer, as it applies to procs and C, in which proc isn't already a peer of C commands.
Indeed. That’s the problem.