(no title)
joe91 | 1 year ago
auto first(auto... params) { return params...[0]; }
Unless I'm missing something - but the post is showing off the fact that you can index into the list of types of the parameters, as well as the parameters themselves (in which case you need full template syntax).
rurban|1 year ago
A proper language would have used ... to designate varargs, and a special identifier to hold these args. Just as the macro preprocessor.