addAllFromAt
fun <Element> KoneMutableList<Element>.addAllFromAt(index: UInt, elements: KoneIterable<Element>)(source)
Adds provided elements 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
elements.size
,adds places with indices from index to
index + elements.size
,and puts the values in the added places.
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.