On 03/13/2017 01:02 AM, Inquie wrote:
> Ok, it doesn't work for appending though ;)
[...]
> Tuple!(int, "A", double, "B")[] y;
> y ~= tuple(3, 2.5);
Interestingly, this works:
Tuple!(int, "A", double, "B")[] y;
y.length += 1;
y[$ - 1] = tuple(3, 2.5);