concat arrays

BlitzMax Forums/BlitzMax Programming/concat arrays

Could anybody help me out!
How can I concat two arrays..
Is this a built in feature in bmax?

It is since 1.26 if you have a regular 1D array


array = array1[..] + array2[..] (if you want to concat the whole array)

Nice .. Just did the update, and it works .. What a time saver.
Thanks

Yeah especially if you wanted to cut out only a single slot, its now quite easy by using

array = array[1..(slotN-1)] + array[(slotN+1)..]