List.addAll

Adds the elements contained in the array passed to the function at the end of the list.

This function could cause a memory reallocation if the capacity of the list is not sufficient to contain the items.

Parameters

otherArray
Type: T[]

the array that contains the elements to add to the list

Meta