Is there a dynamic container like a `seq` for types? `seq` itself does not work 
because it requires values ( and typedesc is apparently not a value ). The goal 
is to do collection-like things like sorting, reversing, adding, removing but 
with types as a first class value.The D language has `AliasSeq` 
([https://dlang.org/library/std/meta/alias_seq.html)](https://dlang.org/library/std/meta/alias_seq.html\)),
 is there an equivalent for Nim?

Reply via email to