list.insert-nth()
Last updated
Was this helpful?
Last updated
Was this helpful?
The insert-nth()
function returns the $list
with $value
inserted into index $n
.
$list
The list to insert $value
at index $n
.
$n
The index $n
under which $value
is inserted.
$value
The value to insert at the $n
index.
The return value is the list with the inserted $value
at the $n
index.