On Wednesday, 3 September 2014 at 05:18:42 UTC, Jason den Dulk
wrote:
[...]
While not really answering your question, I believe the idiomatic
way is to use enum here instead of string/char[].
Conjecture: strings are final but the symbol can be redirected to
point to new arrays, such as resul
I have this piece of code:
template somet(R...) {
static if (R.length)
{
string somet = "[\n"~R[0]~"\n" ~ somet!(R[1..R.length]) ~
"]\n";
}
else
string somet = "";
}
void main()
{
writeln(somet!("name","tame"));
writeln(somet!"name");
}
When I compile it, it generates th