tl;dr: How do you do perfect forwarding in D?


The link has a great explanation, but for example, let's say I have this method:

void foo(T)(in int a, out int b, ref int c, scope int delegate(ref const(T)) d)
    const nothrow
{
}

How do I create another method, bar(), which can be called in lieu of foo(), which subsequently calls foo() "perfectly" (i.e. without introducing compilation/scope/etc. problems at the calling site)?

The naive approach

auto bar(T...)(T args)
{
    writeln("foo() intercepted!");
    return foo(args);
}

of course doesn't work because it doesn't handle the ref, in, out, inout, the const-ness of the method, pure-ity, nothrow, etc... and it also limits how the values can be used with r-values.

And I don't know how to handle those possible cases... any ideas?

link|improve this question

feedback

1 Answer

Your naive approach can be improved upon, though it's still not perfect:

auto ref bar(T...)(auto ref T args)
{
    writeln("foo() intercepted!");
    return foo(args);
}

Now the only problem is scope arguments.

link|improve this answer
1  
Wait, what about nothrow, pure, const, inout, @property, @safe, and all those other things I can't think of at the moment? Every one of those (even @property) can slightly change code behavior, and/or prevent compilation. – Mehrdad Oct 31 '11 at 3:32
1  
You need an auto ref as return, and an if considition to your template, and still, I'm not sure this is enough. – deadalnix Oct 31 '11 at 11:09
@Mehrdad: Good points, although pure is inferred for templates nowadays. – dsimcha Oct 31 '11 at 18:33
@deadalnix: Good point, edited. – dsimcha Oct 31 '11 at 18:33
@dsimcha : you need to test if foo is callable with args. Something passed by value to bar can be then passed by reference to foo. But the changed value will only be visible into bar which isn't what we want. Note that I'm not sure of that and may be wrong. – deadalnix Nov 1 '11 at 13:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.