Hi all, If I use zip() to collate together one or more ranges, the individual elements get returned as a Tuple of the corresponding types.
Is there any way to get zip to label those elements, i.e. to return e.g.
Tuple!(int, "one", float, "two")
instead of
Tuple!(int, float)
.... ?
