Can anyone tell me how to work with the parameters stored in the value specified by &rest.
I've read around a lot and it seems as if authors only know how to list all the parameters as so.
(defun test (a &rest b) b)
This is nice to see, but not really that useful.
The best I've found so far is to use first, second, and so on to get the parameter you are looking for.
(defun test (a &rest b)
(first b))
I noticed this method stops working at the tenth parameter, but the specification (from what I've read) supports a minimum of 50. Even if the chances are slim that I'll use 50 parameters, I'd like to know how to access them all.
Thanks