I have some arrays I would like to `append!` to the first. At the moment I do
reduce(append!, array_1, [array_2, array_3, ...]), but I would like to write append!(array_1, array_2, array_3, ...) just like for `push!`ing several items into the collection. Why is this not allowed? Thank you, michele
