Move generalized variable documentation from misc/cl.texi to lispref
[bpt/emacs.git] / doc / lispref / lists.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990-1995, 1998-1999, 2001-2012 Free Software Foundation, Inc.
4 @c See the file elisp.texi for copying conditions.
5 @node Lists
6 @chapter Lists
7 @cindex lists
8 @cindex element (of list)
9
10 A @dfn{list} represents a sequence of zero or more elements (which may
11 be any Lisp objects). The important difference between lists and
12 vectors is that two or more lists can share part of their structure; in
13 addition, you can insert or delete elements in a list without copying
14 the whole list.
15
16 @menu
17 * Cons Cells:: How lists are made out of cons cells.
18 * List-related Predicates:: Is this object a list? Comparing two lists.
19 * List Elements:: Extracting the pieces of a list.
20 * Building Lists:: Creating list structure.
21 * List Variables:: Modifying lists stored in variables.
22 * Modifying Lists:: Storing new pieces into an existing list.
23 * Sets And Lists:: A list can represent a finite mathematical set.
24 * Association Lists:: A list can represent a finite relation or mapping.
25 @end menu
26
27 @node Cons Cells
28 @section Lists and Cons Cells
29 @cindex lists and cons cells
30
31 Lists in Lisp are not a primitive data type; they are built up from
32 @dfn{cons cells} (@pxref{Cons Cell Type}). A cons cell is a data
33 object that represents an ordered pair. That is, it has two slots,
34 and each slot @dfn{holds}, or @dfn{refers to}, some Lisp object. One
35 slot is known as the @sc{car}, and the other is known as the @sc{cdr}.
36 (These names are traditional; see @ref{Cons Cell Type}.) @sc{cdr} is
37 pronounced ``could-er''.
38
39 We say that ``the @sc{car} of this cons cell is'' whatever object
40 its @sc{car} slot currently holds, and likewise for the @sc{cdr}.
41
42 A list is a series of cons cells ``chained together'', so that each
43 cell refers to the next one. There is one cons cell for each element
44 of the list. By convention, the @sc{car}s of the cons cells hold the
45 elements of the list, and the @sc{cdr}s are used to chain the list
46 (this asymmetry between @sc{car} and @sc{cdr} is entirely a matter of
47 convention; at the level of cons cells, the @sc{car} and @sc{cdr}
48 slots have similar properties). Hence, the @sc{cdr} slot of each cons
49 cell in a list refers to the following cons cell.
50
51 @cindex true list
52 Also by convention, the @sc{cdr} of the last cons cell in a list is
53 @code{nil}. We call such a @code{nil}-terminated structure a
54 @dfn{true list}. In Emacs Lisp, the symbol @code{nil} is both a
55 symbol and a list with no elements. For convenience, the symbol
56 @code{nil} is considered to have @code{nil} as its @sc{cdr} (and also
57 as its @sc{car}).
58
59 Hence, the @sc{cdr} of a true list is always a true list. The
60 @sc{cdr} of a nonempty true list is a true list containing all the
61 elements except the first.
62
63 @cindex dotted list
64 @cindex circular list
65 If the @sc{cdr} of a list's last cons cell is some value other than
66 @code{nil}, we call the structure a @dfn{dotted list}, since its
67 printed representation would use dotted pair notation (@pxref{Dotted
68 Pair Notation}). There is one other possibility: some cons cell's
69 @sc{cdr} could point to one of the previous cons cells in the list.
70 We call that structure a @dfn{circular list}.
71
72 For some purposes, it does not matter whether a list is true,
73 circular or dotted. If a program doesn't look far enough down the
74 list to see the @sc{cdr} of the final cons cell, it won't care.
75 However, some functions that operate on lists demand true lists and
76 signal errors if given a dotted list. Most functions that try to find
77 the end of a list enter infinite loops if given a circular list.
78
79 @cindex list structure
80 Because most cons cells are used as part of lists, we refer to any
81 structure made out of cons cells as a @dfn{list structure}.
82
83 @node List-related Predicates
84 @section Predicates on Lists
85
86 The following predicates test whether a Lisp object is an atom,
87 whether it is a cons cell or is a list, or whether it is the
88 distinguished object @code{nil}. (Many of these predicates can be
89 defined in terms of the others, but they are used so often that it is
90 worth having them.)
91
92 @defun consp object
93 This function returns @code{t} if @var{object} is a cons cell, @code{nil}
94 otherwise. @code{nil} is not a cons cell, although it @emph{is} a list.
95 @end defun
96
97 @defun atom object
98 This function returns @code{t} if @var{object} is an atom, @code{nil}
99 otherwise. All objects except cons cells are atoms. The symbol
100 @code{nil} is an atom and is also a list; it is the only Lisp object
101 that is both.
102
103 @example
104 (atom @var{object}) @equiv{} (not (consp @var{object}))
105 @end example
106 @end defun
107
108 @defun listp object
109 This function returns @code{t} if @var{object} is a cons cell or
110 @code{nil}. Otherwise, it returns @code{nil}.
111
112 @example
113 @group
114 (listp '(1))
115 @result{} t
116 @end group
117 @group
118 (listp '())
119 @result{} t
120 @end group
121 @end example
122 @end defun
123
124 @defun nlistp object
125 This function is the opposite of @code{listp}: it returns @code{t} if
126 @var{object} is not a list. Otherwise, it returns @code{nil}.
127
128 @example
129 (listp @var{object}) @equiv{} (not (nlistp @var{object}))
130 @end example
131 @end defun
132
133 @defun null object
134 This function returns @code{t} if @var{object} is @code{nil}, and
135 returns @code{nil} otherwise. This function is identical to @code{not},
136 but as a matter of clarity we use @code{null} when @var{object} is
137 considered a list and @code{not} when it is considered a truth value
138 (see @code{not} in @ref{Combining Conditions}).
139
140 @example
141 @group
142 (null '(1))
143 @result{} nil
144 @end group
145 @group
146 (null '())
147 @result{} t
148 @end group
149 @end example
150 @end defun
151
152
153 @node List Elements
154 @section Accessing Elements of Lists
155 @cindex list elements
156
157 @defun car cons-cell
158 This function returns the value referred to by the first slot of the
159 cons cell @var{cons-cell}. In other words, it returns the @sc{car} of
160 @var{cons-cell}.
161
162 As a special case, if @var{cons-cell} is @code{nil}, this function
163 returns @code{nil}. Therefore, any list is a valid argument. An
164 error is signaled if the argument is not a cons cell or @code{nil}.
165
166 @example
167 @group
168 (car '(a b c))
169 @result{} a
170 @end group
171 @group
172 (car '())
173 @result{} nil
174 @end group
175 @end example
176 @end defun
177
178 @defun cdr cons-cell
179 This function returns the value referred to by the second slot of the
180 cons cell @var{cons-cell}. In other words, it returns the @sc{cdr} of
181 @var{cons-cell}.
182
183 As a special case, if @var{cons-cell} is @code{nil}, this function
184 returns @code{nil}; therefore, any list is a valid argument. An error
185 is signaled if the argument is not a cons cell or @code{nil}.
186
187 @example
188 @group
189 (cdr '(a b c))
190 @result{} (b c)
191 @end group
192 @group
193 (cdr '())
194 @result{} nil
195 @end group
196 @end example
197 @end defun
198
199 @defun car-safe object
200 This function lets you take the @sc{car} of a cons cell while avoiding
201 errors for other data types. It returns the @sc{car} of @var{object} if
202 @var{object} is a cons cell, @code{nil} otherwise. This is in contrast
203 to @code{car}, which signals an error if @var{object} is not a list.
204
205 @example
206 @group
207 (car-safe @var{object})
208 @equiv{}
209 (let ((x @var{object}))
210 (if (consp x)
211 (car x)
212 nil))
213 @end group
214 @end example
215 @end defun
216
217 @defun cdr-safe object
218 This function lets you take the @sc{cdr} of a cons cell while
219 avoiding errors for other data types. It returns the @sc{cdr} of
220 @var{object} if @var{object} is a cons cell, @code{nil} otherwise.
221 This is in contrast to @code{cdr}, which signals an error if
222 @var{object} is not a list.
223
224 @example
225 @group
226 (cdr-safe @var{object})
227 @equiv{}
228 (let ((x @var{object}))
229 (if (consp x)
230 (cdr x)
231 nil))
232 @end group
233 @end example
234 @end defun
235
236 @defmac pop listname
237 This macro is a way of examining the @sc{car} of a list,
238 and taking it off the list, all at once.
239 @c FIXME I don't think is a particularly good way to do it,
240 @c but generalized variables have not been introduced yet.
241 (In fact, this macro can act on generalized variables, not just lists.
242 @xref{Generalized Variables}.)
243
244 It operates on the list which is stored in the symbol @var{listname}.
245 It removes this element from the list by setting @var{listname}
246 to the @sc{cdr} of its old value---but it also returns the @sc{car}
247 of that list, which is the element being removed.
248
249 @example
250 x
251 @result{} (a b c)
252 (pop x)
253 @result{} a
254 x
255 @result{} (b c)
256 @end example
257
258 @noindent
259 For the @code{push} macro, which adds an element to a list,
260 @xref{List Variables}.
261 @end defmac
262
263 @defun nth n list
264 @anchor{Definition of nth}
265 This function returns the @var{n}th element of @var{list}. Elements
266 are numbered starting with zero, so the @sc{car} of @var{list} is
267 element number zero. If the length of @var{list} is @var{n} or less,
268 the value is @code{nil}.
269
270 If @var{n} is negative, @code{nth} returns the first element of
271 @var{list}.
272
273 @example
274 @group
275 (nth 2 '(1 2 3 4))
276 @result{} 3
277 @end group
278 @group
279 (nth 10 '(1 2 3 4))
280 @result{} nil
281 @end group
282 @group
283 (nth -3 '(1 2 3 4))
284 @result{} 1
285
286 (nth n x) @equiv{} (car (nthcdr n x))
287 @end group
288 @end example
289
290 The function @code{elt} is similar, but applies to any kind of sequence.
291 For historical reasons, it takes its arguments in the opposite order.
292 @xref{Sequence Functions}.
293 @end defun
294
295 @defun nthcdr n list
296 This function returns the @var{n}th @sc{cdr} of @var{list}. In other
297 words, it skips past the first @var{n} links of @var{list} and returns
298 what follows.
299
300 If @var{n} is zero or negative, @code{nthcdr} returns all of
301 @var{list}. If the length of @var{list} is @var{n} or less,
302 @code{nthcdr} returns @code{nil}.
303
304 @example
305 @group
306 (nthcdr 1 '(1 2 3 4))
307 @result{} (2 3 4)
308 @end group
309 @group
310 (nthcdr 10 '(1 2 3 4))
311 @result{} nil
312 @end group
313 @group
314 (nthcdr -3 '(1 2 3 4))
315 @result{} (1 2 3 4)
316 @end group
317 @end example
318 @end defun
319
320 @defun last list &optional n
321 This function returns the last link of @var{list}. The @code{car} of
322 this link is the list's last element. If @var{list} is null,
323 @code{nil} is returned. If @var{n} is non-@code{nil}, the
324 @var{n}th-to-last link is returned instead, or the whole of @var{list}
325 if @var{n} is bigger than @var{list}'s length.
326 @end defun
327
328 @defun safe-length list
329 @anchor{Definition of safe-length}
330 This function returns the length of @var{list}, with no risk of either
331 an error or an infinite loop. It generally returns the number of
332 distinct cons cells in the list. However, for circular lists,
333 the value is just an upper bound; it is often too large.
334
335 If @var{list} is not @code{nil} or a cons cell, @code{safe-length}
336 returns 0.
337 @end defun
338
339 The most common way to compute the length of a list, when you are not
340 worried that it may be circular, is with @code{length}. @xref{Sequence
341 Functions}.
342
343 @defun caar cons-cell
344 This is the same as @code{(car (car @var{cons-cell}))}.
345 @end defun
346
347 @defun cadr cons-cell
348 This is the same as @code{(car (cdr @var{cons-cell}))}
349 or @code{(nth 1 @var{cons-cell})}.
350 @end defun
351
352 @defun cdar cons-cell
353 This is the same as @code{(cdr (car @var{cons-cell}))}.
354 @end defun
355
356 @defun cddr cons-cell
357 This is the same as @code{(cdr (cdr @var{cons-cell}))}
358 or @code{(nthcdr 2 @var{cons-cell})}.
359 @end defun
360
361 @defun butlast x &optional n
362 This function returns the list @var{x} with the last element,
363 or the last @var{n} elements, removed. If @var{n} is greater
364 than zero it makes a copy of the list so as not to damage the
365 original list. In general, @code{(append (butlast @var{x} @var{n})
366 (last @var{x} @var{n}))} will return a list equal to @var{x}.
367 @end defun
368
369 @defun nbutlast x &optional n
370 This is a version of @code{butlast} that works by destructively
371 modifying the @code{cdr} of the appropriate element, rather than
372 making a copy of the list.
373 @end defun
374
375 @node Building Lists
376 @section Building Cons Cells and Lists
377 @cindex cons cells
378 @cindex building lists
379
380 Many functions build lists, as lists reside at the very heart of Lisp.
381 @code{cons} is the fundamental list-building function; however, it is
382 interesting to note that @code{list} is used more times in the source
383 code for Emacs than @code{cons}.
384
385 @defun cons object1 object2
386 This function is the most basic function for building new list
387 structure. It creates a new cons cell, making @var{object1} the
388 @sc{car}, and @var{object2} the @sc{cdr}. It then returns the new
389 cons cell. The arguments @var{object1} and @var{object2} may be any
390 Lisp objects, but most often @var{object2} is a list.
391
392 @example
393 @group
394 (cons 1 '(2))
395 @result{} (1 2)
396 @end group
397 @group
398 (cons 1 '())
399 @result{} (1)
400 @end group
401 @group
402 (cons 1 2)
403 @result{} (1 . 2)
404 @end group
405 @end example
406
407 @cindex consing
408 @code{cons} is often used to add a single element to the front of a
409 list. This is called @dfn{consing the element onto the list}.
410 @footnote{There is no strictly equivalent way to add an element to
411 the end of a list. You can use @code{(append @var{listname} (list
412 @var{newelt}))}, which creates a whole new list by copying @var{listname}
413 and adding @var{newelt} to its end. Or you can use @code{(nconc
414 @var{listname} (list @var{newelt}))}, which modifies @var{listname}
415 by following all the @sc{cdr}s and then replacing the terminating
416 @code{nil}. Compare this to adding an element to the beginning of a
417 list with @code{cons}, which neither copies nor modifies the list.}
418 For example:
419
420 @example
421 (setq list (cons newelt list))
422 @end example
423
424 Note that there is no conflict between the variable named @code{list}
425 used in this example and the function named @code{list} described below;
426 any symbol can serve both purposes.
427 @end defun
428
429 @defun list &rest objects
430 This function creates a list with @var{objects} as its elements. The
431 resulting list is always @code{nil}-terminated. If no @var{objects}
432 are given, the empty list is returned.
433
434 @example
435 @group
436 (list 1 2 3 4 5)
437 @result{} (1 2 3 4 5)
438 @end group
439 @group
440 (list 1 2 '(3 4 5) 'foo)
441 @result{} (1 2 (3 4 5) foo)
442 @end group
443 @group
444 (list)
445 @result{} nil
446 @end group
447 @end example
448 @end defun
449
450 @defun make-list length object
451 This function creates a list of @var{length} elements, in which each
452 element is @var{object}. Compare @code{make-list} with
453 @code{make-string} (@pxref{Creating Strings}).
454
455 @example
456 @group
457 (make-list 3 'pigs)
458 @result{} (pigs pigs pigs)
459 @end group
460 @group
461 (make-list 0 'pigs)
462 @result{} nil
463 @end group
464 @group
465 (setq l (make-list 3 '(a b)))
466 @result{} ((a b) (a b) (a b))
467 (eq (car l) (cadr l))
468 @result{} t
469 @end group
470 @end example
471 @end defun
472
473 @defun append &rest sequences
474 @cindex copying lists
475 This function returns a list containing all the elements of
476 @var{sequences}. The @var{sequences} may be lists, vectors,
477 bool-vectors, or strings, but the last one should usually be a list.
478 All arguments except the last one are copied, so none of the arguments
479 is altered. (See @code{nconc} in @ref{Rearrangement}, for a way to join
480 lists with no copying.)
481
482 More generally, the final argument to @code{append} may be any Lisp
483 object. The final argument is not copied or converted; it becomes the
484 @sc{cdr} of the last cons cell in the new list. If the final argument
485 is itself a list, then its elements become in effect elements of the
486 result list. If the final element is not a list, the result is a
487 dotted list since its final @sc{cdr} is not @code{nil} as required
488 in a true list.
489 @end defun
490
491 Here is an example of using @code{append}:
492
493 @example
494 @group
495 (setq trees '(pine oak))
496 @result{} (pine oak)
497 (setq more-trees (append '(maple birch) trees))
498 @result{} (maple birch pine oak)
499 @end group
500
501 @group
502 trees
503 @result{} (pine oak)
504 more-trees
505 @result{} (maple birch pine oak)
506 @end group
507 @group
508 (eq trees (cdr (cdr more-trees)))
509 @result{} t
510 @end group
511 @end example
512
513 You can see how @code{append} works by looking at a box diagram. The
514 variable @code{trees} is set to the list @code{(pine oak)} and then the
515 variable @code{more-trees} is set to the list @code{(maple birch pine
516 oak)}. However, the variable @code{trees} continues to refer to the
517 original list:
518
519 @smallexample
520 @group
521 more-trees trees
522 | |
523 | --- --- --- --- -> --- --- --- ---
524 --> | | |--> | | |--> | | |--> | | |--> nil
525 --- --- --- --- --- --- --- ---
526 | | | |
527 | | | |
528 --> maple -->birch --> pine --> oak
529 @end group
530 @end smallexample
531
532 An empty sequence contributes nothing to the value returned by
533 @code{append}. As a consequence of this, a final @code{nil} argument
534 forces a copy of the previous argument:
535
536 @example
537 @group
538 trees
539 @result{} (pine oak)
540 @end group
541 @group
542 (setq wood (append trees nil))
543 @result{} (pine oak)
544 @end group
545 @group
546 wood
547 @result{} (pine oak)
548 @end group
549 @group
550 (eq wood trees)
551 @result{} nil
552 @end group
553 @end example
554
555 @noindent
556 This once was the usual way to copy a list, before the function
557 @code{copy-sequence} was invented. @xref{Sequences Arrays Vectors}.
558
559 Here we show the use of vectors and strings as arguments to @code{append}:
560
561 @example
562 @group
563 (append [a b] "cd" nil)
564 @result{} (a b 99 100)
565 @end group
566 @end example
567
568 With the help of @code{apply} (@pxref{Calling Functions}), we can append
569 all the lists in a list of lists:
570
571 @example
572 @group
573 (apply 'append '((a b c) nil (x y z) nil))
574 @result{} (a b c x y z)
575 @end group
576 @end example
577
578 If no @var{sequences} are given, @code{nil} is returned:
579
580 @example
581 @group
582 (append)
583 @result{} nil
584 @end group
585 @end example
586
587 Here are some examples where the final argument is not a list:
588
589 @example
590 (append '(x y) 'z)
591 @result{} (x y . z)
592 (append '(x y) [z])
593 @result{} (x y . [z])
594 @end example
595
596 @noindent
597 The second example shows that when the final argument is a sequence but
598 not a list, the sequence's elements do not become elements of the
599 resulting list. Instead, the sequence becomes the final @sc{cdr}, like
600 any other non-list final argument.
601
602 @defun reverse list
603 This function creates a new list whose elements are the elements of
604 @var{list}, but in reverse order. The original argument @var{list} is
605 @emph{not} altered.
606
607 @example
608 @group
609 (setq x '(1 2 3 4))
610 @result{} (1 2 3 4)
611 @end group
612 @group
613 (reverse x)
614 @result{} (4 3 2 1)
615 x
616 @result{} (1 2 3 4)
617 @end group
618 @end example
619 @end defun
620
621 @defun copy-tree tree &optional vecp
622 This function returns a copy of the tree @code{tree}. If @var{tree} is a
623 cons cell, this makes a new cons cell with the same @sc{car} and
624 @sc{cdr}, then recursively copies the @sc{car} and @sc{cdr} in the
625 same way.
626
627 Normally, when @var{tree} is anything other than a cons cell,
628 @code{copy-tree} simply returns @var{tree}. However, if @var{vecp} is
629 non-@code{nil}, it copies vectors too (and operates recursively on
630 their elements).
631 @end defun
632
633 @defun number-sequence from &optional to separation
634 This returns a list of numbers starting with @var{from} and
635 incrementing by @var{separation}, and ending at or just before
636 @var{to}. @var{separation} can be positive or negative and defaults
637 to 1. If @var{to} is @code{nil} or numerically equal to @var{from},
638 the value is the one-element list @code{(@var{from})}. If @var{to} is
639 less than @var{from} with a positive @var{separation}, or greater than
640 @var{from} with a negative @var{separation}, the value is @code{nil}
641 because those arguments specify an empty sequence.
642
643 If @var{separation} is 0 and @var{to} is neither @code{nil} nor
644 numerically equal to @var{from}, @code{number-sequence} signals an
645 error, since those arguments specify an infinite sequence.
646
647 All arguments can be integers or floating point numbers. However,
648 floating point arguments can be tricky, because floating point
649 arithmetic is inexact. For instance, depending on the machine, it may
650 quite well happen that @code{(number-sequence 0.4 0.6 0.2)} returns
651 the one element list @code{(0.4)}, whereas
652 @code{(number-sequence 0.4 0.8 0.2)} returns a list with three
653 elements. The @var{n}th element of the list is computed by the exact
654 formula @code{(+ @var{from} (* @var{n} @var{separation}))}. Thus, if
655 one wants to make sure that @var{to} is included in the list, one can
656 pass an expression of this exact type for @var{to}. Alternatively,
657 one can replace @var{to} with a slightly larger value (or a slightly
658 more negative value if @var{separation} is negative).
659
660 Some examples:
661
662 @example
663 (number-sequence 4 9)
664 @result{} (4 5 6 7 8 9)
665 (number-sequence 9 4 -1)
666 @result{} (9 8 7 6 5 4)
667 (number-sequence 9 4 -2)
668 @result{} (9 7 5)
669 (number-sequence 8)
670 @result{} (8)
671 (number-sequence 8 5)
672 @result{} nil
673 (number-sequence 5 8 -1)
674 @result{} nil
675 (number-sequence 1.5 6 2)
676 @result{} (1.5 3.5 5.5)
677 @end example
678 @end defun
679
680 @node List Variables
681 @section Modifying List Variables
682
683 These functions, and one macro, provide convenient ways
684 to modify a list which is stored in a variable.
685
686 @defmac push newelt listname
687 This macro provides an alternative way to write
688 @code{(setq @var{listname} (cons @var{newelt} @var{listname}))}.
689 @c FIXME I don't think is a particularly good way to do it,
690 @c but generalized variables have not been introduced yet.
691 (In fact, this macro can act on generalized variables, not just lists.
692 @xref{Generalized Variables}.)
693
694 @example
695 (setq l '(a b))
696 @result{} (a b)
697 (push 'c l)
698 @result{} (c a b)
699 l
700 @result{} (c a b)
701 @end example
702
703 @noindent
704 For the @code{pop} macro, which removes the first element from a list,
705 @xref{List Elements}.
706 @end defmac
707
708 Two functions modify lists that are the values of variables.
709
710 @defun add-to-list symbol element &optional append compare-fn
711 This function sets the variable @var{symbol} by consing @var{element}
712 onto the old value, if @var{element} is not already a member of that
713 value. It returns the resulting list, whether updated or not. The
714 value of @var{symbol} had better be a list already before the call.
715 @code{add-to-list} uses @var{compare-fn} to compare @var{element}
716 against existing list members; if @var{compare-fn} is @code{nil}, it
717 uses @code{equal}.
718
719 Normally, if @var{element} is added, it is added to the front of
720 @var{symbol}, but if the optional argument @var{append} is
721 non-@code{nil}, it is added at the end.
722
723 The argument @var{symbol} is not implicitly quoted; @code{add-to-list}
724 is an ordinary function, like @code{set} and unlike @code{setq}. Quote
725 the argument yourself if that is what you want.
726 @end defun
727
728 Here's a scenario showing how to use @code{add-to-list}:
729
730 @example
731 (setq foo '(a b))
732 @result{} (a b)
733
734 (add-to-list 'foo 'c) ;; @r{Add @code{c}.}
735 @result{} (c a b)
736
737 (add-to-list 'foo 'b) ;; @r{No effect.}
738 @result{} (c a b)
739
740 foo ;; @r{@code{foo} was changed.}
741 @result{} (c a b)
742 @end example
743
744 An equivalent expression for @code{(add-to-list '@var{var}
745 @var{value})} is this:
746
747 @example
748 (or (member @var{value} @var{var})
749 (setq @var{var} (cons @var{value} @var{var})))
750 @end example
751
752 @defun add-to-ordered-list symbol element &optional order
753 This function sets the variable @var{symbol} by inserting
754 @var{element} into the old value, which must be a list, at the
755 position specified by @var{order}. If @var{element} is already a
756 member of the list, its position in the list is adjusted according
757 to @var{order}. Membership is tested using @code{eq}.
758 This function returns the resulting list, whether updated or not.
759
760 The @var{order} is typically a number (integer or float), and the
761 elements of the list are sorted in non-decreasing numerical order.
762
763 @var{order} may also be omitted or @code{nil}. Then the numeric order
764 of @var{element} stays unchanged if it already has one; otherwise,
765 @var{element} has no numeric order. Elements without a numeric list
766 order are placed at the end of the list, in no particular order.
767
768 Any other value for @var{order} removes the numeric order of @var{element}
769 if it already has one; otherwise, it is equivalent to @code{nil}.
770
771 The argument @var{symbol} is not implicitly quoted;
772 @code{add-to-ordered-list} is an ordinary function, like @code{set}
773 and unlike @code{setq}. Quote the argument yourself if necessary.
774
775 The ordering information is stored in a hash table on @var{symbol}'s
776 @code{list-order} property.
777 @end defun
778
779 Here's a scenario showing how to use @code{add-to-ordered-list}:
780
781 @example
782 (setq foo '())
783 @result{} nil
784
785 (add-to-ordered-list 'foo 'a 1) ;; @r{Add @code{a}.}
786 @result{} (a)
787
788 (add-to-ordered-list 'foo 'c 3) ;; @r{Add @code{c}.}
789 @result{} (a c)
790
791 (add-to-ordered-list 'foo 'b 2) ;; @r{Add @code{b}.}
792 @result{} (a b c)
793
794 (add-to-ordered-list 'foo 'b 4) ;; @r{Move @code{b}.}
795 @result{} (a c b)
796
797 (add-to-ordered-list 'foo 'd) ;; @r{Append @code{d}.}
798 @result{} (a c b d)
799
800 (add-to-ordered-list 'foo 'e) ;; @r{Add @code{e}}.
801 @result{} (a c b e d)
802
803 foo ;; @r{@code{foo} was changed.}
804 @result{} (a c b e d)
805 @end example
806
807 @node Modifying Lists
808 @section Modifying Existing List Structure
809 @cindex destructive list operations
810
811 You can modify the @sc{car} and @sc{cdr} contents of a cons cell with the
812 primitives @code{setcar} and @code{setcdr}. We call these ``destructive''
813 operations because they change existing list structure.
814
815 @cindex CL note---@code{rplaca} vs @code{setcar}
816 @quotation
817 @findex rplaca
818 @findex rplacd
819 @b{Common Lisp note:} Common Lisp uses functions @code{rplaca} and
820 @code{rplacd} to alter list structure; they change structure the same
821 way as @code{setcar} and @code{setcdr}, but the Common Lisp functions
822 return the cons cell while @code{setcar} and @code{setcdr} return the
823 new @sc{car} or @sc{cdr}.
824 @end quotation
825
826 @menu
827 * Setcar:: Replacing an element in a list.
828 * Setcdr:: Replacing part of the list backbone.
829 This can be used to remove or add elements.
830 * Rearrangement:: Reordering the elements in a list; combining lists.
831 @end menu
832
833 @node Setcar
834 @subsection Altering List Elements with @code{setcar}
835
836 Changing the @sc{car} of a cons cell is done with @code{setcar}. When
837 used on a list, @code{setcar} replaces one element of a list with a
838 different element.
839
840 @defun setcar cons object
841 This function stores @var{object} as the new @sc{car} of @var{cons},
842 replacing its previous @sc{car}. In other words, it changes the
843 @sc{car} slot of @var{cons} to refer to @var{object}. It returns the
844 value @var{object}. For example:
845
846 @example
847 @group
848 (setq x '(1 2))
849 @result{} (1 2)
850 @end group
851 @group
852 (setcar x 4)
853 @result{} 4
854 @end group
855 @group
856 x
857 @result{} (4 2)
858 @end group
859 @end example
860 @end defun
861
862 When a cons cell is part of the shared structure of several lists,
863 storing a new @sc{car} into the cons changes one element of each of
864 these lists. Here is an example:
865
866 @example
867 @group
868 ;; @r{Create two lists that are partly shared.}
869 (setq x1 '(a b c))
870 @result{} (a b c)
871 (setq x2 (cons 'z (cdr x1)))
872 @result{} (z b c)
873 @end group
874
875 @group
876 ;; @r{Replace the @sc{car} of a shared link.}
877 (setcar (cdr x1) 'foo)
878 @result{} foo
879 x1 ; @r{Both lists are changed.}
880 @result{} (a foo c)
881 x2
882 @result{} (z foo c)
883 @end group
884
885 @group
886 ;; @r{Replace the @sc{car} of a link that is not shared.}
887 (setcar x1 'baz)
888 @result{} baz
889 x1 ; @r{Only one list is changed.}
890 @result{} (baz foo c)
891 x2
892 @result{} (z foo c)
893 @end group
894 @end example
895
896 Here is a graphical depiction of the shared structure of the two lists
897 in the variables @code{x1} and @code{x2}, showing why replacing @code{b}
898 changes them both:
899
900 @example
901 @group
902 --- --- --- --- --- ---
903 x1---> | | |----> | | |--> | | |--> nil
904 --- --- --- --- --- ---
905 | --> | |
906 | | | |
907 --> a | --> b --> c
908 |
909 --- --- |
910 x2--> | | |--
911 --- ---
912 |
913 |
914 --> z
915 @end group
916 @end example
917
918 Here is an alternative form of box diagram, showing the same relationship:
919
920 @example
921 @group
922 x1:
923 -------------- -------------- --------------
924 | car | cdr | | car | cdr | | car | cdr |
925 | a | o------->| b | o------->| c | nil |
926 | | | -->| | | | | |
927 -------------- | -------------- --------------
928 |
929 x2: |
930 -------------- |
931 | car | cdr | |
932 | z | o----
933 | | |
934 --------------
935 @end group
936 @end example
937
938 @node Setcdr
939 @subsection Altering the CDR of a List
940
941 The lowest-level primitive for modifying a @sc{cdr} is @code{setcdr}:
942
943 @defun setcdr cons object
944 This function stores @var{object} as the new @sc{cdr} of @var{cons},
945 replacing its previous @sc{cdr}. In other words, it changes the
946 @sc{cdr} slot of @var{cons} to refer to @var{object}. It returns the
947 value @var{object}.
948 @end defun
949
950 Here is an example of replacing the @sc{cdr} of a list with a
951 different list. All but the first element of the list are removed in
952 favor of a different sequence of elements. The first element is
953 unchanged, because it resides in the @sc{car} of the list, and is not
954 reached via the @sc{cdr}.
955
956 @example
957 @group
958 (setq x '(1 2 3))
959 @result{} (1 2 3)
960 @end group
961 @group
962 (setcdr x '(4))
963 @result{} (4)
964 @end group
965 @group
966 x
967 @result{} (1 4)
968 @end group
969 @end example
970
971 You can delete elements from the middle of a list by altering the
972 @sc{cdr}s of the cons cells in the list. For example, here we delete
973 the second element, @code{b}, from the list @code{(a b c)}, by changing
974 the @sc{cdr} of the first cons cell:
975
976 @example
977 @group
978 (setq x1 '(a b c))
979 @result{} (a b c)
980 (setcdr x1 (cdr (cdr x1)))
981 @result{} (c)
982 x1
983 @result{} (a c)
984 @end group
985 @end example
986
987 Here is the result in box notation:
988
989 @smallexample
990 @group
991 --------------------
992 | |
993 -------------- | -------------- | --------------
994 | car | cdr | | | car | cdr | -->| car | cdr |
995 | a | o----- | b | o-------->| c | nil |
996 | | | | | | | | |
997 -------------- -------------- --------------
998 @end group
999 @end smallexample
1000
1001 @noindent
1002 The second cons cell, which previously held the element @code{b}, still
1003 exists and its @sc{car} is still @code{b}, but it no longer forms part
1004 of this list.
1005
1006 It is equally easy to insert a new element by changing @sc{cdr}s:
1007
1008 @example
1009 @group
1010 (setq x1 '(a b c))
1011 @result{} (a b c)
1012 (setcdr x1 (cons 'd (cdr x1)))
1013 @result{} (d b c)
1014 x1
1015 @result{} (a d b c)
1016 @end group
1017 @end example
1018
1019 Here is this result in box notation:
1020
1021 @smallexample
1022 @group
1023 -------------- ------------- -------------
1024 | car | cdr | | car | cdr | | car | cdr |
1025 | a | o | -->| b | o------->| c | nil |
1026 | | | | | | | | | | |
1027 --------- | -- | ------------- -------------
1028 | |
1029 ----- --------
1030 | |
1031 | --------------- |
1032 | | car | cdr | |
1033 -->| d | o------
1034 | | |
1035 ---------------
1036 @end group
1037 @end smallexample
1038
1039 @node Rearrangement
1040 @subsection Functions that Rearrange Lists
1041 @cindex rearrangement of lists
1042 @cindex modification of lists
1043
1044 Here are some functions that rearrange lists ``destructively'' by
1045 modifying the @sc{cdr}s of their component cons cells. We call these
1046 functions ``destructive'' because they chew up the original lists passed
1047 to them as arguments, relinking their cons cells to form a new list that
1048 is the returned value.
1049
1050 @ifnottex
1051 See @code{delq}, in @ref{Sets And Lists}, for another function
1052 that modifies cons cells.
1053 @end ifnottex
1054 @iftex
1055 The function @code{delq} in the following section is another example
1056 of destructive list manipulation.
1057 @end iftex
1058
1059 @defun nconc &rest lists
1060 @cindex concatenating lists
1061 @cindex joining lists
1062 This function returns a list containing all the elements of @var{lists}.
1063 Unlike @code{append} (@pxref{Building Lists}), the @var{lists} are
1064 @emph{not} copied. Instead, the last @sc{cdr} of each of the
1065 @var{lists} is changed to refer to the following list. The last of the
1066 @var{lists} is not altered. For example:
1067
1068 @example
1069 @group
1070 (setq x '(1 2 3))
1071 @result{} (1 2 3)
1072 @end group
1073 @group
1074 (nconc x '(4 5))
1075 @result{} (1 2 3 4 5)
1076 @end group
1077 @group
1078 x
1079 @result{} (1 2 3 4 5)
1080 @end group
1081 @end example
1082
1083 Since the last argument of @code{nconc} is not itself modified, it is
1084 reasonable to use a constant list, such as @code{'(4 5)}, as in the
1085 above example. For the same reason, the last argument need not be a
1086 list:
1087
1088 @example
1089 @group
1090 (setq x '(1 2 3))
1091 @result{} (1 2 3)
1092 @end group
1093 @group
1094 (nconc x 'z)
1095 @result{} (1 2 3 . z)
1096 @end group
1097 @group
1098 x
1099 @result{} (1 2 3 . z)
1100 @end group
1101 @end example
1102
1103 However, the other arguments (all but the last) must be lists.
1104
1105 A common pitfall is to use a quoted constant list as a non-last
1106 argument to @code{nconc}. If you do this, your program will change
1107 each time you run it! Here is what happens:
1108
1109 @smallexample
1110 @group
1111 (defun add-foo (x) ; @r{We want this function to add}
1112 (nconc '(foo) x)) ; @r{@code{foo} to the front of its arg.}
1113 @end group
1114
1115 @group
1116 (symbol-function 'add-foo)
1117 @result{} (lambda (x) (nconc (quote (foo)) x))
1118 @end group
1119
1120 @group
1121 (setq xx (add-foo '(1 2))) ; @r{It seems to work.}
1122 @result{} (foo 1 2)
1123 @end group
1124 @group
1125 (setq xy (add-foo '(3 4))) ; @r{What happened?}
1126 @result{} (foo 1 2 3 4)
1127 @end group
1128 @group
1129 (eq xx xy)
1130 @result{} t
1131 @end group
1132
1133 @group
1134 (symbol-function 'add-foo)
1135 @result{} (lambda (x) (nconc (quote (foo 1 2 3 4) x)))
1136 @end group
1137 @end smallexample
1138 @end defun
1139
1140 @defun nreverse list
1141 @cindex reversing a list
1142 This function reverses the order of the elements of @var{list}.
1143 Unlike @code{reverse}, @code{nreverse} alters its argument by reversing
1144 the @sc{cdr}s in the cons cells forming the list. The cons cell that
1145 used to be the last one in @var{list} becomes the first cons cell of the
1146 value.
1147
1148 For example:
1149
1150 @example
1151 @group
1152 (setq x '(a b c))
1153 @result{} (a b c)
1154 @end group
1155 @group
1156 x
1157 @result{} (a b c)
1158 (nreverse x)
1159 @result{} (c b a)
1160 @end group
1161 @group
1162 ;; @r{The cons cell that was first is now last.}
1163 x
1164 @result{} (a)
1165 @end group
1166 @end example
1167
1168 To avoid confusion, we usually store the result of @code{nreverse}
1169 back in the same variable which held the original list:
1170
1171 @example
1172 (setq x (nreverse x))
1173 @end example
1174
1175 Here is the @code{nreverse} of our favorite example, @code{(a b c)},
1176 presented graphically:
1177
1178 @smallexample
1179 @group
1180 @r{Original list head:} @r{Reversed list:}
1181 ------------- ------------- ------------
1182 | car | cdr | | car | cdr | | car | cdr |
1183 | a | nil |<-- | b | o |<-- | c | o |
1184 | | | | | | | | | | | | |
1185 ------------- | --------- | - | -------- | -
1186 | | | |
1187 ------------- ------------
1188 @end group
1189 @end smallexample
1190 @end defun
1191
1192 @defun sort list predicate
1193 @cindex stable sort
1194 @cindex sorting lists
1195 This function sorts @var{list} stably, though destructively, and
1196 returns the sorted list. It compares elements using @var{predicate}. A
1197 stable sort is one in which elements with equal sort keys maintain their
1198 relative order before and after the sort. Stability is important when
1199 successive sorts are used to order elements according to different
1200 criteria.
1201
1202 The argument @var{predicate} must be a function that accepts two
1203 arguments. It is called with two elements of @var{list}. To get an
1204 increasing order sort, the @var{predicate} should return non-@code{nil} if the
1205 first element is ``less than'' the second, or @code{nil} if not.
1206
1207 The comparison function @var{predicate} must give reliable results for
1208 any given pair of arguments, at least within a single call to
1209 @code{sort}. It must be @dfn{antisymmetric}; that is, if @var{a} is
1210 less than @var{b}, @var{b} must not be less than @var{a}. It must be
1211 @dfn{transitive}---that is, if @var{a} is less than @var{b}, and @var{b}
1212 is less than @var{c}, then @var{a} must be less than @var{c}. If you
1213 use a comparison function which does not meet these requirements, the
1214 result of @code{sort} is unpredictable.
1215
1216 The destructive aspect of @code{sort} is that it rearranges the cons
1217 cells forming @var{list} by changing @sc{cdr}s. A nondestructive sort
1218 function would create new cons cells to store the elements in their
1219 sorted order. If you wish to make a sorted copy without destroying the
1220 original, copy it first with @code{copy-sequence} and then sort.
1221
1222 Sorting does not change the @sc{car}s of the cons cells in @var{list};
1223 the cons cell that originally contained the element @code{a} in
1224 @var{list} still has @code{a} in its @sc{car} after sorting, but it now
1225 appears in a different position in the list due to the change of
1226 @sc{cdr}s. For example:
1227
1228 @example
1229 @group
1230 (setq nums '(1 3 2 6 5 4 0))
1231 @result{} (1 3 2 6 5 4 0)
1232 @end group
1233 @group
1234 (sort nums '<)
1235 @result{} (0 1 2 3 4 5 6)
1236 @end group
1237 @group
1238 nums
1239 @result{} (1 2 3 4 5 6)
1240 @end group
1241 @end example
1242
1243 @noindent
1244 @strong{Warning}: Note that the list in @code{nums} no longer contains
1245 0; this is the same cons cell that it was before, but it is no longer
1246 the first one in the list. Don't assume a variable that formerly held
1247 the argument now holds the entire sorted list! Instead, save the result
1248 of @code{sort} and use that. Most often we store the result back into
1249 the variable that held the original list:
1250
1251 @example
1252 (setq nums (sort nums '<))
1253 @end example
1254
1255 @xref{Sorting}, for more functions that perform sorting.
1256 See @code{documentation} in @ref{Accessing Documentation}, for a
1257 useful example of @code{sort}.
1258 @end defun
1259
1260 @node Sets And Lists
1261 @section Using Lists as Sets
1262 @cindex lists as sets
1263 @cindex sets
1264
1265 A list can represent an unordered mathematical set---simply consider a
1266 value an element of a set if it appears in the list, and ignore the
1267 order of the list. To form the union of two sets, use @code{append} (as
1268 long as you don't mind having duplicate elements). You can remove
1269 @code{equal} duplicates using @code{delete-dups}. Other useful
1270 functions for sets include @code{memq} and @code{delq}, and their
1271 @code{equal} versions, @code{member} and @code{delete}.
1272
1273 @cindex CL note---lack @code{union}, @code{intersection}
1274 @quotation
1275 @b{Common Lisp note:} Common Lisp has functions @code{union} (which
1276 avoids duplicate elements) and @code{intersection} for set operations.
1277 Although standard GNU Emacs Lisp does not have them, the @file{cl-lib}
1278 library provides versions. @xref{Top,, Overview, cl, Common Lisp Extensions}.
1279 @end quotation
1280
1281 @defun memq object list
1282 @cindex membership in a list
1283 This function tests to see whether @var{object} is a member of
1284 @var{list}. If it is, @code{memq} returns a list starting with the
1285 first occurrence of @var{object}. Otherwise, it returns @code{nil}.
1286 The letter @samp{q} in @code{memq} says that it uses @code{eq} to
1287 compare @var{object} against the elements of the list. For example:
1288
1289 @example
1290 @group
1291 (memq 'b '(a b c b a))
1292 @result{} (b c b a)
1293 @end group
1294 @group
1295 (memq '(2) '((1) (2))) ; @r{@code{(2)} and @code{(2)} are not @code{eq}.}
1296 @result{} nil
1297 @end group
1298 @end example
1299 @end defun
1300
1301 @defun delq object list
1302 @cindex deleting list elements
1303 This function destructively removes all elements @code{eq} to
1304 @var{object} from @var{list}, and returns the resulting list. The
1305 letter @samp{q} in @code{delq} says that it uses @code{eq} to compare
1306 @var{object} against the elements of the list, like @code{memq} and
1307 @code{remq}.
1308
1309 Typically, when you invoke @code{delq}, you should use the return
1310 value by assigning it to the variable which held the original list.
1311 The reason for this is explained below.
1312 @end defun
1313
1314 The @code{delq} function deletes elements from the front of the list
1315 by simply advancing down the list, and returning a sublist that starts
1316 after those elements. For example:
1317
1318 @example
1319 @group
1320 (delq 'a '(a b c)) @equiv{} (cdr '(a b c))
1321 @end group
1322 @end example
1323
1324 @noindent
1325 When an element to be deleted appears in the middle of the list,
1326 removing it involves changing the @sc{cdr}s (@pxref{Setcdr}).
1327
1328 @example
1329 @group
1330 (setq sample-list '(a b c (4)))
1331 @result{} (a b c (4))
1332 @end group
1333 @group
1334 (delq 'a sample-list)
1335 @result{} (b c (4))
1336 @end group
1337 @group
1338 sample-list
1339 @result{} (a b c (4))
1340 @end group
1341 @group
1342 (delq 'c sample-list)
1343 @result{} (a b (4))
1344 @end group
1345 @group
1346 sample-list
1347 @result{} (a b (4))
1348 @end group
1349 @end example
1350
1351 Note that @code{(delq 'c sample-list)} modifies @code{sample-list} to
1352 splice out the third element, but @code{(delq 'a sample-list)} does not
1353 splice anything---it just returns a shorter list. Don't assume that a
1354 variable which formerly held the argument @var{list} now has fewer
1355 elements, or that it still holds the original list! Instead, save the
1356 result of @code{delq} and use that. Most often we store the result back
1357 into the variable that held the original list:
1358
1359 @example
1360 (setq flowers (delq 'rose flowers))
1361 @end example
1362
1363 In the following example, the @code{(4)} that @code{delq} attempts to match
1364 and the @code{(4)} in the @code{sample-list} are not @code{eq}:
1365
1366 @example
1367 @group
1368 (delq '(4) sample-list)
1369 @result{} (a c (4))
1370 @end group
1371 @end example
1372
1373 If you want to delete elements that are @code{equal} to a given value,
1374 use @code{delete} (see below).
1375
1376 @defun remq object list
1377 This function returns a copy of @var{list}, with all elements removed
1378 which are @code{eq} to @var{object}. The letter @samp{q} in @code{remq}
1379 says that it uses @code{eq} to compare @var{object} against the elements
1380 of @code{list}.
1381
1382 @example
1383 @group
1384 (setq sample-list '(a b c a b c))
1385 @result{} (a b c a b c)
1386 @end group
1387 @group
1388 (remq 'a sample-list)
1389 @result{} (b c b c)
1390 @end group
1391 @group
1392 sample-list
1393 @result{} (a b c a b c)
1394 @end group
1395 @end example
1396 @end defun
1397
1398 @defun memql object list
1399 The function @code{memql} tests to see whether @var{object} is a member
1400 of @var{list}, comparing members with @var{object} using @code{eql},
1401 so floating point elements are compared by value.
1402 If @var{object} is a member, @code{memql} returns a list starting with
1403 its first occurrence in @var{list}. Otherwise, it returns @code{nil}.
1404
1405 Compare this with @code{memq}:
1406
1407 @example
1408 @group
1409 (memql 1.2 '(1.1 1.2 1.3)) ; @r{@code{1.2} and @code{1.2} are @code{eql}.}
1410 @result{} (1.2 1.3)
1411 @end group
1412 @group
1413 (memq 1.2 '(1.1 1.2 1.3)) ; @r{@code{1.2} and @code{1.2} are not @code{eq}.}
1414 @result{} nil
1415 @end group
1416 @end example
1417 @end defun
1418
1419 The following three functions are like @code{memq}, @code{delq} and
1420 @code{remq}, but use @code{equal} rather than @code{eq} to compare
1421 elements. @xref{Equality Predicates}.
1422
1423 @defun member object list
1424 The function @code{member} tests to see whether @var{object} is a member
1425 of @var{list}, comparing members with @var{object} using @code{equal}.
1426 If @var{object} is a member, @code{member} returns a list starting with
1427 its first occurrence in @var{list}. Otherwise, it returns @code{nil}.
1428
1429 Compare this with @code{memq}:
1430
1431 @example
1432 @group
1433 (member '(2) '((1) (2))) ; @r{@code{(2)} and @code{(2)} are @code{equal}.}
1434 @result{} ((2))
1435 @end group
1436 @group
1437 (memq '(2) '((1) (2))) ; @r{@code{(2)} and @code{(2)} are not @code{eq}.}
1438 @result{} nil
1439 @end group
1440 @group
1441 ;; @r{Two strings with the same contents are @code{equal}.}
1442 (member "foo" '("foo" "bar"))
1443 @result{} ("foo" "bar")
1444 @end group
1445 @end example
1446 @end defun
1447
1448 @defun delete object sequence
1449 This function removes all elements @code{equal} to @var{object} from
1450 @var{sequence}, and returns the resulting sequence.
1451
1452 If @var{sequence} is a list, @code{delete} is to @code{delq} as
1453 @code{member} is to @code{memq}: it uses @code{equal} to compare
1454 elements with @var{object}, like @code{member}; when it finds an
1455 element that matches, it cuts the element out just as @code{delq}
1456 would. As with @code{delq}, you should typically use the return value
1457 by assigning it to the variable which held the original list.
1458
1459 If @code{sequence} is a vector or string, @code{delete} returns a copy
1460 of @code{sequence} with all elements @code{equal} to @code{object}
1461 removed.
1462
1463 For example:
1464
1465 @example
1466 @group
1467 (setq l '((2) (1) (2)))
1468 (delete '(2) l)
1469 @result{} ((1))
1470 l
1471 @result{} ((2) (1))
1472 ;; @r{If you want to change @code{l} reliably,}
1473 ;; @r{write @code{(setq l (delete '(2) l))}.}
1474 @end group
1475 @group
1476 (setq l '((2) (1) (2)))
1477 (delete '(1) l)
1478 @result{} ((2) (2))
1479 l
1480 @result{} ((2) (2))
1481 ;; @r{In this case, it makes no difference whether you set @code{l},}
1482 ;; @r{but you should do so for the sake of the other case.}
1483 @end group
1484 @group
1485 (delete '(2) [(2) (1) (2)])
1486 @result{} [(1)]
1487 @end group
1488 @end example
1489 @end defun
1490
1491 @defun remove object sequence
1492 This function is the non-destructive counterpart of @code{delete}. It
1493 returns a copy of @code{sequence}, a list, vector, or string, with
1494 elements @code{equal} to @code{object} removed. For example:
1495
1496 @example
1497 @group
1498 (remove '(2) '((2) (1) (2)))
1499 @result{} ((1))
1500 @end group
1501 @group
1502 (remove '(2) [(2) (1) (2)])
1503 @result{} [(1)]
1504 @end group
1505 @end example
1506 @end defun
1507
1508 @quotation
1509 @b{Common Lisp note:} The functions @code{member}, @code{delete} and
1510 @code{remove} in GNU Emacs Lisp are derived from Maclisp, not Common
1511 Lisp. The Common Lisp versions do not use @code{equal} to compare
1512 elements.
1513 @end quotation
1514
1515 @defun member-ignore-case object list
1516 This function is like @code{member}, except that @var{object} should
1517 be a string and that it ignores differences in letter-case and text
1518 representation: upper-case and lower-case letters are treated as
1519 equal, and unibyte strings are converted to multibyte prior to
1520 comparison.
1521 @end defun
1522
1523 @defun delete-dups list
1524 This function destructively removes all @code{equal} duplicates from
1525 @var{list}, stores the result in @var{list} and returns it. Of
1526 several @code{equal} occurrences of an element in @var{list},
1527 @code{delete-dups} keeps the first one.
1528 @end defun
1529
1530 See also the function @code{add-to-list}, in @ref{List Variables},
1531 for a way to add an element to a list stored in a variable and used as a
1532 set.
1533
1534 @node Association Lists
1535 @section Association Lists
1536 @cindex association list
1537 @cindex alist
1538
1539 An @dfn{association list}, or @dfn{alist} for short, records a mapping
1540 from keys to values. It is a list of cons cells called
1541 @dfn{associations}: the @sc{car} of each cons cell is the @dfn{key}, and the
1542 @sc{cdr} is the @dfn{associated value}.@footnote{This usage of ``key''
1543 is not related to the term ``key sequence''; it means a value used to
1544 look up an item in a table. In this case, the table is the alist, and
1545 the alist associations are the items.}
1546
1547 Here is an example of an alist. The key @code{pine} is associated with
1548 the value @code{cones}; the key @code{oak} is associated with
1549 @code{acorns}; and the key @code{maple} is associated with @code{seeds}.
1550
1551 @example
1552 @group
1553 ((pine . cones)
1554 (oak . acorns)
1555 (maple . seeds))
1556 @end group
1557 @end example
1558
1559 Both the values and the keys in an alist may be any Lisp objects.
1560 For example, in the following alist, the symbol @code{a} is
1561 associated with the number @code{1}, and the string @code{"b"} is
1562 associated with the @emph{list} @code{(2 3)}, which is the @sc{cdr} of
1563 the alist element:
1564
1565 @example
1566 ((a . 1) ("b" 2 3))
1567 @end example
1568
1569 Sometimes it is better to design an alist to store the associated
1570 value in the @sc{car} of the @sc{cdr} of the element. Here is an
1571 example of such an alist:
1572
1573 @example
1574 ((rose red) (lily white) (buttercup yellow))
1575 @end example
1576
1577 @noindent
1578 Here we regard @code{red} as the value associated with @code{rose}. One
1579 advantage of this kind of alist is that you can store other related
1580 information---even a list of other items---in the @sc{cdr} of the
1581 @sc{cdr}. One disadvantage is that you cannot use @code{rassq} (see
1582 below) to find the element containing a given value. When neither of
1583 these considerations is important, the choice is a matter of taste, as
1584 long as you are consistent about it for any given alist.
1585
1586 The same alist shown above could be regarded as having the
1587 associated value in the @sc{cdr} of the element; the value associated
1588 with @code{rose} would be the list @code{(red)}.
1589
1590 Association lists are often used to record information that you might
1591 otherwise keep on a stack, since new associations may be added easily to
1592 the front of the list. When searching an association list for an
1593 association with a given key, the first one found is returned, if there
1594 is more than one.
1595
1596 In Emacs Lisp, it is @emph{not} an error if an element of an
1597 association list is not a cons cell. The alist search functions simply
1598 ignore such elements. Many other versions of Lisp signal errors in such
1599 cases.
1600
1601 Note that property lists are similar to association lists in several
1602 respects. A property list behaves like an association list in which
1603 each key can occur only once. @xref{Property Lists}, for a comparison
1604 of property lists and association lists.
1605
1606 @defun assoc key alist
1607 This function returns the first association for @var{key} in
1608 @var{alist}, comparing @var{key} against the alist elements using
1609 @code{equal} (@pxref{Equality Predicates}). It returns @code{nil} if no
1610 association in @var{alist} has a @sc{car} @code{equal} to @var{key}.
1611 For example:
1612
1613 @smallexample
1614 (setq trees '((pine . cones) (oak . acorns) (maple . seeds)))
1615 @result{} ((pine . cones) (oak . acorns) (maple . seeds))
1616 (assoc 'oak trees)
1617 @result{} (oak . acorns)
1618 (cdr (assoc 'oak trees))
1619 @result{} acorns
1620 (assoc 'birch trees)
1621 @result{} nil
1622 @end smallexample
1623
1624 Here is another example, in which the keys and values are not symbols:
1625
1626 @smallexample
1627 (setq needles-per-cluster
1628 '((2 "Austrian Pine" "Red Pine")
1629 (3 "Pitch Pine")
1630 (5 "White Pine")))
1631
1632 (cdr (assoc 3 needles-per-cluster))
1633 @result{} ("Pitch Pine")
1634 (cdr (assoc 2 needles-per-cluster))
1635 @result{} ("Austrian Pine" "Red Pine")
1636 @end smallexample
1637 @end defun
1638
1639 The function @code{assoc-string} is much like @code{assoc} except
1640 that it ignores certain differences between strings. @xref{Text
1641 Comparison}.
1642
1643 @defun rassoc value alist
1644 This function returns the first association with value @var{value} in
1645 @var{alist}. It returns @code{nil} if no association in @var{alist} has
1646 a @sc{cdr} @code{equal} to @var{value}.
1647
1648 @code{rassoc} is like @code{assoc} except that it compares the @sc{cdr} of
1649 each @var{alist} association instead of the @sc{car}. You can think of
1650 this as ``reverse @code{assoc}'', finding the key for a given value.
1651 @end defun
1652
1653 @defun assq key alist
1654 This function is like @code{assoc} in that it returns the first
1655 association for @var{key} in @var{alist}, but it makes the comparison
1656 using @code{eq} instead of @code{equal}. @code{assq} returns @code{nil}
1657 if no association in @var{alist} has a @sc{car} @code{eq} to @var{key}.
1658 This function is used more often than @code{assoc}, since @code{eq} is
1659 faster than @code{equal} and most alists use symbols as keys.
1660 @xref{Equality Predicates}.
1661
1662 @smallexample
1663 (setq trees '((pine . cones) (oak . acorns) (maple . seeds)))
1664 @result{} ((pine . cones) (oak . acorns) (maple . seeds))
1665 (assq 'pine trees)
1666 @result{} (pine . cones)
1667 @end smallexample
1668
1669 On the other hand, @code{assq} is not usually useful in alists where the
1670 keys may not be symbols:
1671
1672 @smallexample
1673 (setq leaves
1674 '(("simple leaves" . oak)
1675 ("compound leaves" . horsechestnut)))
1676
1677 (assq "simple leaves" leaves)
1678 @result{} nil
1679 (assoc "simple leaves" leaves)
1680 @result{} ("simple leaves" . oak)
1681 @end smallexample
1682 @end defun
1683
1684 @defun rassq value alist
1685 This function returns the first association with value @var{value} in
1686 @var{alist}. It returns @code{nil} if no association in @var{alist} has
1687 a @sc{cdr} @code{eq} to @var{value}.
1688
1689 @code{rassq} is like @code{assq} except that it compares the @sc{cdr} of
1690 each @var{alist} association instead of the @sc{car}. You can think of
1691 this as ``reverse @code{assq}'', finding the key for a given value.
1692
1693 For example:
1694
1695 @smallexample
1696 (setq trees '((pine . cones) (oak . acorns) (maple . seeds)))
1697
1698 (rassq 'acorns trees)
1699 @result{} (oak . acorns)
1700 (rassq 'spores trees)
1701 @result{} nil
1702 @end smallexample
1703
1704 @code{rassq} cannot search for a value stored in the @sc{car}
1705 of the @sc{cdr} of an element:
1706
1707 @smallexample
1708 (setq colors '((rose red) (lily white) (buttercup yellow)))
1709
1710 (rassq 'white colors)
1711 @result{} nil
1712 @end smallexample
1713
1714 In this case, the @sc{cdr} of the association @code{(lily white)} is not
1715 the symbol @code{white}, but rather the list @code{(white)}. This
1716 becomes clearer if the association is written in dotted pair notation:
1717
1718 @smallexample
1719 (lily white) @equiv{} (lily . (white))
1720 @end smallexample
1721 @end defun
1722
1723 @defun assoc-default key alist &optional test default
1724 This function searches @var{alist} for a match for @var{key}. For each
1725 element of @var{alist}, it compares the element (if it is an atom) or
1726 the element's @sc{car} (if it is a cons) against @var{key}, by calling
1727 @var{test} with two arguments: the element or its @sc{car}, and
1728 @var{key}. The arguments are passed in that order so that you can get
1729 useful results using @code{string-match} with an alist that contains
1730 regular expressions (@pxref{Regexp Search}). If @var{test} is omitted
1731 or @code{nil}, @code{equal} is used for comparison.
1732
1733 If an alist element matches @var{key} by this criterion,
1734 then @code{assoc-default} returns a value based on this element.
1735 If the element is a cons, then the value is the element's @sc{cdr}.
1736 Otherwise, the return value is @var{default}.
1737
1738 If no alist element matches @var{key}, @code{assoc-default} returns
1739 @code{nil}.
1740 @end defun
1741
1742 @defun copy-alist alist
1743 @cindex copying alists
1744 This function returns a two-level deep copy of @var{alist}: it creates a
1745 new copy of each association, so that you can alter the associations of
1746 the new alist without changing the old one.
1747
1748 @smallexample
1749 @group
1750 (setq needles-per-cluster
1751 '((2 . ("Austrian Pine" "Red Pine"))
1752 (3 . ("Pitch Pine"))
1753 @end group
1754 (5 . ("White Pine"))))
1755 @result{}
1756 ((2 "Austrian Pine" "Red Pine")
1757 (3 "Pitch Pine")
1758 (5 "White Pine"))
1759
1760 (setq copy (copy-alist needles-per-cluster))
1761 @result{}
1762 ((2 "Austrian Pine" "Red Pine")
1763 (3 "Pitch Pine")
1764 (5 "White Pine"))
1765
1766 (eq needles-per-cluster copy)
1767 @result{} nil
1768 (equal needles-per-cluster copy)
1769 @result{} t
1770 (eq (car needles-per-cluster) (car copy))
1771 @result{} nil
1772 (cdr (car (cdr needles-per-cluster)))
1773 @result{} ("Pitch Pine")
1774 @group
1775 (eq (cdr (car (cdr needles-per-cluster)))
1776 (cdr (car (cdr copy))))
1777 @result{} t
1778 @end group
1779 @end smallexample
1780
1781 This example shows how @code{copy-alist} makes it possible to change
1782 the associations of one copy without affecting the other:
1783
1784 @smallexample
1785 @group
1786 (setcdr (assq 3 copy) '("Martian Vacuum Pine"))
1787 (cdr (assq 3 needles-per-cluster))
1788 @result{} ("Pitch Pine")
1789 @end group
1790 @end smallexample
1791 @end defun
1792
1793 @defun assq-delete-all key alist
1794 This function deletes from @var{alist} all the elements whose @sc{car}
1795 is @code{eq} to @var{key}, much as if you used @code{delq} to delete
1796 each such element one by one. It returns the shortened alist, and
1797 often modifies the original list structure of @var{alist}. For
1798 correct results, use the return value of @code{assq-delete-all} rather
1799 than looking at the saved value of @var{alist}.
1800
1801 @example
1802 (setq alist '((foo 1) (bar 2) (foo 3) (lose 4)))
1803 @result{} ((foo 1) (bar 2) (foo 3) (lose 4))
1804 (assq-delete-all 'foo alist)
1805 @result{} ((bar 2) (lose 4))
1806 alist
1807 @result{} ((foo 1) (bar 2) (lose 4))
1808 @end example
1809 @end defun
1810
1811 @defun rassq-delete-all value alist
1812 This function deletes from @var{alist} all the elements whose @sc{cdr}
1813 is @code{eq} to @var{value}. It returns the shortened alist, and
1814 often modifies the original list structure of @var{alist}.
1815 @code{rassq-delete-all} is like @code{assq-delete-all} except that it
1816 compares the @sc{cdr} of each @var{alist} association instead of the
1817 @sc{car}.
1818 @end defun