On Sunday, 18 September 2016 at 08:06:54 UTC, Lutger wrote:
I have a tuple of strings generated at compile time, for example:alias names = AliasSeq!("Alice", "Bob");How is it possible to construct a range of strings from this, in order to use it at runtime with other range algorithms?For example, this chain(names, ["Chuck"])
Try
chain([names], ["Chuck"])
[...]