g++ std::is_function implementation: what does _ArgTypes followed by 6 periods mean?
It's the same as:
_Res(_ArgTypes..., ...)
The comma before an ellipses parameter is optional.
It's the same as:
_Res(_ArgTypes..., ...)
The comma before an ellipses parameter is optional.