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