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