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(...) {
// ...
}
Victor Porton via Digitalmars-d-learn Sun, 24 Feb 2019 05:10:42 -0800
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(...) {
// ...
}