append (list...)
A new list whose elements are the all of the elements in the given lists, in the order that they appear in the argument lists.
This function concatenates all of the argument lists into a single new list, in the order the arguments are given. Each list is appended to the preceding list by assigning it to the cdr of the last element of that list. The appending is non-destructive; for a destructive version of append use nappend.
Copyright © 1995-2010 by Cogent Real-Time Systems, Inc. All rights reserved.