insertindex() would ofc work like this:
array =[1, 2, 3]
array[2]++ =10
array

> [1, 2, 10, 3]


I guess that using ++ is not the best idea, since new programmers would 
expect incrementation to occur, but I did not have time to invent more 
verbose syntax...

Reply via email to