"Nick Sabalausky" <[email protected]> wrote in message news:[email protected]... > > Yes, I'm wondering if this will finally let us do something along the > lines of: > > template Foo() > { > alias "blah blah" this; > // Was: const char[] Foo = "blah blah"; > } >
Or, perhaps more likely, wondering if it'll let us do something like this:
template Foo(T)
{
// Was: alias Bar!(T) Foo;
alias Bar!(T) this;
}
