I can call list.add() which adds at the end but there is no convenient way to add an entry to a specific index which at the same time grows the list.
Ok, it seams as if list.insertRange(index, range, [elem]) is what i am looking for.