Is there a method to concatenate multiple ArrayLists?
ex:
ArrayList<Integer> a
ArrayList<Integer> b
ArrayList<Integer> c
ArrayList<Integer> d = a + b + c
where d is a single ArrayList<Integer> that contains all of the values of a,b,c in their preserved orders
 
     
     
    