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