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