On Tuesday, 25 August 2020 at 16:01:25 UTC, data pulverizer wrote:
On Tuesday, 25 August 2020 at 14:02:33 UTC, Petar Kirov
[ZombineDev] wrote:
...
You can find a full example of this here:
https://run.dlang.io/gist/run-dlang/80e120e989a6b0f72fd7244b17021e2f
There is an issue with `AliasTuple` though, you can't directly
print its collections with pragma:
```d
alias coll = AliasSeq!(s1, s2, s3, s7);
pragma(msg, coll);
```
I get the following error:
```d
onlineapp.d(29): Error: cannot interpret AliasTuple!1 at
compile time
onlineapp.d(29): Error: cannot interpret AliasTuple!(1, 2) at
compile time
...
tuple((__error), (__error), (__error), (__error))
```
Yeah, I wrote a quick implementation, just for this example. For
sure there are better ways to implement it.