Adds the elements contained in the array passed to the function the list to the specified index.
The first element of the array will be inserted at the specified index, then the other indexes of the other elements will be incremental
This function could cause a memory reallocation if the capacity of the list is not sufficient to contain the items or index <=
length of the list.
Adds the elements contained in the array passed to the function the list to the specified index. The first element of the array will be inserted at the specified index, then the other indexes of the other elements will be incremental
This function could cause a memory reallocation if the capacity of the list is not sufficient to contain the items or index <= length of the list.