On Sunday, 24 February 2019 at 13:09:15 UTC, Victor Porton wrote:
Let f be a variadic function:

Result f(...);

How to implement variadic function g which calls f with the same arguments as one it receives?

Result g(...) {
  // ...
}

I don’t know if you can, but if at least g is a variadic template function, you can:
https://run.dlang.io/is/fhxZuV

Bastiaan.

Reply via email to