Java Utililty Methods ArrayList Copy

List of utility methods to do ArrayList Copy

Description

The list of methods to do ArrayList Copy are organized into topic(s).

Method

ArrayListmemcpy(ArrayList src)
memcpy
if (src == null)
    return null;
ArrayList<T> dst = new ArrayList<T>();
for (int c = 0; c < src.size(); c++) {
    dst.add(src.get(c));
return dst;