Scheme has set-car! and set-cdr!, but no set-cons! .
Are expressions such as
(set! c (cons 3 c))
which places the element 3 on the list c, the proper/only/best/usual way to modify a list?
feedback
|
|
That is the correct way to modify the list c. But such usage is rare. Perhaps you could tell us more about what you are trying to do. | |||||||||
feedback
|
Well, let's be clear what this expression does:
So, This can be loosely described as "adding an item to a list" in some contexts, but this is a loose description, because you're not taking an existing list and modifying it to have a new item; rather, you're creating a list with a new initial item and the original list as its tail, and changing some (but maybe not all) references to the old list to point to the new one. There are two main things I can think off right away that also could count as "adding an item to a list":
Example of the first:
Example of the second:
| ||||
feedback
|
|
You need to know about type constructors, modifiers and accessors. Pairs are CONStructed with cons, which is a procedure of 2 arguments, the first argument (the car) is the first element of the pair and the second argument (cdr) is the second element of a pair. Proper lists require it's cdr to be a null-terminated list. Otherwise, it is only a pair. Pair selectors, (car and cdr) take one argument, a CONStructed list, and either extracts the first (using car) or the rest (using cdr) of is pair argument. Modifiers (setters) take 2 arguments: an existing CONStruct (a pair, a car of a pair, and basically anything that has been constructed) and replaces the selected construct with the value of its second argument.
Got it? | |||
|
feedback
|