addAt
Adds provided element before element with index index.
For each index from 0
to size there is exactly one corresponding place for a value. And this operation:
for each place with index at least index increases its index by one,
adds a place with index index,
and puts the value in the added place.
When index is equal to size the element is added at the end.
If index is greater than size, IndexOutOfBoundsException is thrown.
Throws
when index is greater than size.