Two questions:
1.I want a function to insert an element inside a list in-place (in any position but the start of the list, see question 2 for the reason) such that:
CL> (defun insert-in-place (the-list after-position new-element) .... ) => ...
CL> (setf testy-list (list 'a 'b 'c 'd)) => ...
CL> testy-list => ('A 'B 'C 'D)
CL> (insert-in-place testy-list 1 'BOOOO) => ...
CL> testy-list => ('A 'B 'BOOOO 'C 'D)
2.I think that inserting an element into the start of the list in-place is impossible through a function because the args are passed by value, so since the first cons cell of the list is passed, it is passed by value and it is a copy and so changing its car only changes a copy car, not the original, although the following cons cells are shared and change in place is possible. Am I correct?
I made this for a project of mine, handles index 0 and if index is greater than length of list, the new item is appended at end of list. Be aware that it creates a new list so it may not applicable for you. I include it hoping it would be useful for someone.
1) here it is:
2) destructive modification of cons cells:
This sets the car of the first cons cell to 'foo.