The parameter list can include any of the types of parameters supported in macro parameter lists such as **&optional**
, **&rest**
, and **&key**
parameters.5 And, as in macro parameter lists, any parameter can be replaced with a nested destructuring parameter list, which takes apart the list that would otherwise have been bound to the replaced parameter. The list form is evaluated once and should return a list, which is then destructured and the appropriate values are bound to the variables in the parameter list. Then the body-forms are evaluated in order with those bindings in effect. Some simple examples follow:
One kind of parameter you can use with **DESTRUCTURING-BIND**
and also in macro parameter lists, though I didn’t mention it in Chapter 8, is a **&whole**
parameter. If specified, it must be the first parameter in a parameter list, and it’s bound to the whole list form.6 After a parameter, other parameters can appear as usual and will extract specific parts of the list just as they would if the **&whole**
parameter weren’t there. An example of using **&whole**
with **DESTRUCTURING-BIND**
looks like this:
1It’s possible to build a chain of cons cells where the **CDR**
of the last cons cell isn’t **NIL**
but some other atom. This is called a dotted list because the last cons is a dotted pair.
2It may seem that the family of functions can and in fact does modify the tree in place. However, there’s one edge case: when the “tree” passed is, in fact, an atom, it can’t be modified in place, so the result of **NSUBST**
will be a different object than the argument: (nsubst 'x 'y 'y) X
.
4It’s also possible to directly **SETF SYMBOL-PLIST**
. However, that’s a bad idea, as different code may have added different properties to the symbol’s plist for different reasons. If one piece of code clobbers the symbol’s whole plist, it may break other code that added its own properties to the plist.
5Macro parameter lists do support one parameter type, **&environment**
parameters, which **DESTRUCTURING-BIND**
doesn’t. However, I didn’t discuss that parameter type in Chapter 8, and you don’t need to worry about it now either.