e.g.,
void foo(string s)(); // slow,void foo(string s)(int x); // fast. (I, of course, pass a dummy value for x)
This is because the compiler doesn't try to evaluate foo as a CTFE.
I'd like inform it not to do this in the first place.
Jethro via Digitalmars-d-learn Mon, 10 Apr 2017 18:56:19 -0700
e.g.,
void foo(string s)(); // slow,void foo(string s)(int x); // fast. (I, of course, pass a dummy value for x)
This is because the compiler doesn't try to evaluate foo as a CTFE.
I'd like inform it not to do this in the first place.