Tuples, CTFE, and Sliding Template Arguments

Timon Gehr timon.gehr at gmx.ch
Sat Jan 13 03:59:03 UTC 2024


On 1/13/24 04:36, Walter Bright wrote:
> 
> I don't know what "interpolate an expression sequence" means. As for 
> things getting out of sync, execi() with CTFE can reject a mismatch 
> between format specifiers and arguments.

Oh, not at all.

```d
import std.stdio;
alias Seq(T...)=T;
void main(){
     writefln(i"$(Seq!(1,2)) %s");
}
```


More information about the Digitalmars-d mailing list