On Thursday, 15 April 2021 at 19:38:04 UTC, z wrote:
```D
int[] a,b,c,d,e;
void templatef(args...){/*...*/}
//...
auto seq = AliasSeq!(b,c,d);
templatef!(a,seq,e);
templatef!(a,b,c,d,e); //am i being mistaken for thinking these two template calls should be equivalent in behavior?
```
woops, meant `void templatef(args...)(){}`

Reply via email to