On Friday, 16 September 2016 at 17:03:20 UTC, Antonio Corbi wrote:
Is it safe to use or do I have to use the proposed 's[] = t;' or 's[] = t[]' ?
That works for all arrays. `s = t` for dynamically sized arrays (aka slices) just sets the references to the same, but for your statically sized arrays, it also copies.