Hi all, I need to extend a vector with contents from n-tuples i generate iteratively. Currently
append!(a::Vector{T}, items::NTuple{N, T})
is not defined, whereas the method
append!{T}(a::Array{T,1}, items::AbstractVector)
exists and is defined in array.jl.
Anyone finds this useful to justify opening a pull request? What would be a
good implementation?
