Mercurial > emacs
annotate lispref/lists.texi @ 30991:d9b39723c332
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Sun, 20 Aug 2000 22:22:29 +0000 |
parents | fa45a01185c0 |
children | fe7ff8fb99dc |
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 |
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 | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
386 @defun safe-length list |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
387 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
|
388 of either an error or an infinite loop. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
389 |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
390 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
|
391 @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
|
392 number of distinct elements. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
393 @end defun |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
394 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
395 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
|
396 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
|
397 Functions}. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
398 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
399 @defun caar cons-cell |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
400 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
|
401 @end defun |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
402 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
403 @defun cadr cons-cell |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
404 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
|
405 or @code{(nth 1 @var{cons-cell})}. |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
406 @end defun |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
407 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
408 @defun cdar cons-cell |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
409 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
|
410 @end defun |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
411 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
412 @defun cddr cons-cell |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
413 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
|
414 or @code{(nthcdr 2 @var{cons-cell})}. |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
415 @end defun |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
416 |
6558 | 417 @node Building Lists |
418 @comment node-name, next, previous, up | |
419 @section Building Cons Cells and Lists | |
420 @cindex cons cells | |
421 @cindex building lists | |
422 | |
423 Many functions build lists, as lists reside at the very heart of Lisp. | |
424 @code{cons} is the fundamental list-building function; however, it is | |
425 interesting to note that @code{list} is used more times in the source | |
426 code for Emacs than @code{cons}. | |
427 | |
428 @defun cons object1 object2 | |
429 This function is the fundamental function used to build new list | |
430 structure. It creates a new cons cell, making @var{object1} the | |
431 @sc{car}, and @var{object2} the @sc{cdr}. It then returns the new cons | |
432 cell. The arguments @var{object1} and @var{object2} may be any Lisp | |
433 objects, but most often @var{object2} is a list. | |
434 | |
435 @example | |
436 @group | |
437 (cons 1 '(2)) | |
438 @result{} (1 2) | |
439 @end group | |
440 @group | |
441 (cons 1 '()) | |
442 @result{} (1) | |
443 @end group | |
444 @group | |
445 (cons 1 2) | |
446 @result{} (1 . 2) | |
447 @end group | |
448 @end example | |
449 | |
450 @cindex consing | |
451 @code{cons} is often used to add a single element to the front of a | |
452 list. This is called @dfn{consing the element onto the list}. For | |
453 example: | |
454 | |
455 @example | |
456 (setq list (cons newelt list)) | |
457 @end example | |
458 | |
459 Note that there is no conflict between the variable named @code{list} | |
460 used in this example and the function named @code{list} described below; | |
461 any symbol can serve both purposes. | |
462 @end defun | |
463 | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
464 @tindex push |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
465 @defmac push newelt listname |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
466 This macro provides an alternative way to write |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
467 @code{(setq @var{listname} (cons @var{newelt} @var{listname}))}. |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
468 It is new in Emacs 21. |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
469 @end defmac |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
470 |
6558 | 471 @defun list &rest objects |
472 This function creates a list with @var{objects} as its elements. The | |
473 resulting list is always @code{nil}-terminated. If no @var{objects} | |
474 are given, the empty list is returned. | |
475 | |
476 @example | |
477 @group | |
478 (list 1 2 3 4 5) | |
479 @result{} (1 2 3 4 5) | |
480 @end group | |
481 @group | |
482 (list 1 2 '(3 4 5) 'foo) | |
483 @result{} (1 2 (3 4 5) foo) | |
484 @end group | |
485 @group | |
486 (list) | |
487 @result{} nil | |
488 @end group | |
489 @end example | |
490 @end defun | |
491 | |
492 @defun make-list length object | |
493 This function creates a list of length @var{length}, in which all the | |
494 elements have the identical value @var{object}. Compare | |
495 @code{make-list} with @code{make-string} (@pxref{Creating Strings}). | |
496 | |
497 @example | |
498 @group | |
499 (make-list 3 'pigs) | |
500 @result{} (pigs pigs pigs) | |
501 @end group | |
502 @group | |
503 (make-list 0 'pigs) | |
504 @result{} nil | |
505 @end group | |
506 @end example | |
507 @end defun | |
508 | |
509 @defun append &rest sequences | |
510 @cindex copying lists | |
511 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
|
512 @var{sequences}. The @var{sequences} may be lists, vectors, |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
513 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
|
514 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
|
515 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
|
516 lists with no copying.) |
6558 | 517 |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
518 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
|
519 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
|
520 @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
|
521 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
|
522 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
|
523 ``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
|
524 in a true list. |
6558 | 525 |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
526 The @code{append} function also allows integers as arguments. It |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
527 converts them to strings of digits, making up the decimal print |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
528 representation of the integer, and then uses the strings instead of the |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
529 original integers. @strong{Don't use this feature; we plan to eliminate |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
530 it. If you already use this feature, change your programs now!} The |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
531 proper way to convert an integer to a decimal number in this way is with |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
532 @code{format} (@pxref{Formatting Strings}) or @code{number-to-string} |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
533 (@pxref{String Conversion}). |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
534 @end defun |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
535 |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
536 Here is an example of using @code{append}: |
6558 | 537 |
538 @example | |
539 @group | |
540 (setq trees '(pine oak)) | |
541 @result{} (pine oak) | |
542 (setq more-trees (append '(maple birch) trees)) | |
543 @result{} (maple birch pine oak) | |
544 @end group | |
545 | |
546 @group | |
547 trees | |
548 @result{} (pine oak) | |
549 more-trees | |
550 @result{} (maple birch pine oak) | |
551 @end group | |
552 @group | |
553 (eq trees (cdr (cdr more-trees))) | |
554 @result{} t | |
555 @end group | |
556 @end example | |
557 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
558 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
|
559 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
|
560 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
|
561 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
|
562 original list: |
6558 | 563 |
564 @smallexample | |
565 @group | |
566 more-trees trees | |
567 | | | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
568 | --- --- --- --- -> --- --- --- --- |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
569 --> | | |--> | | |--> | | |--> | | |--> nil |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
570 --- --- --- --- --- --- --- --- |
6558 | 571 | | | | |
572 | | | | | |
573 --> maple -->birch --> pine --> oak | |
574 @end group | |
575 @end smallexample | |
576 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
577 An empty sequence contributes nothing to the value returned by |
6558 | 578 @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
|
579 forces a copy of the previous argument: |
6558 | 580 |
581 @example | |
582 @group | |
583 trees | |
584 @result{} (pine oak) | |
585 @end group | |
586 @group | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
587 (setq wood (append trees nil)) |
6558 | 588 @result{} (pine oak) |
589 @end group | |
590 @group | |
591 wood | |
592 @result{} (pine oak) | |
593 @end group | |
594 @group | |
595 (eq wood trees) | |
596 @result{} nil | |
597 @end group | |
598 @end example | |
599 | |
600 @noindent | |
601 This once was the usual way to copy a list, before the function | |
602 @code{copy-sequence} was invented. @xref{Sequences Arrays Vectors}. | |
603 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
604 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
|
605 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
606 @example |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
607 @group |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
608 (append [a b] "cd" nil) |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
609 @result{} (a b 99 100) |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
610 @end group |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
611 @end example |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
612 |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
613 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
|
614 all the lists in a list of lists: |
6558 | 615 |
616 @example | |
617 @group | |
618 (apply 'append '((a b c) nil (x y z) nil)) | |
619 @result{} (a b c x y z) | |
620 @end group | |
621 @end example | |
622 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
623 If no @var{sequences} are given, @code{nil} is returned: |
6558 | 624 |
625 @example | |
626 @group | |
627 (append) | |
628 @result{} nil | |
629 @end group | |
630 @end example | |
631 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
632 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
|
633 |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
634 @example |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
635 (append '(x y) 'z) |
12098 | 636 @result{} (x y . z) |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
637 (append '(x y) [z]) |
12098 | 638 @result{} (x y . [z]) |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
639 @end example |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
640 |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
641 @noindent |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
642 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
|
643 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
|
644 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
|
645 any other non-list final argument. |
6558 | 646 |
647 @defun reverse list | |
648 This function creates a new list whose elements are the elements of | |
649 @var{list}, but in reverse order. The original argument @var{list} is | |
650 @emph{not} altered. | |
651 | |
652 @example | |
653 @group | |
654 (setq x '(1 2 3 4)) | |
655 @result{} (1 2 3 4) | |
656 @end group | |
657 @group | |
658 (reverse x) | |
659 @result{} (4 3 2 1) | |
660 x | |
661 @result{} (1 2 3 4) | |
662 @end group | |
663 @end example | |
664 @end defun | |
665 | |
30808 | 666 @defun remq object list |
667 This function returns a copy of @var{list}, with all elements removed | |
668 which are @code{eq} to @var{object}. The letter @samp{q} in @code{remq} | |
669 says that it uses @code{eq} to compare @var{object} against the elements | |
670 of @code{list}. | |
671 | |
672 @example | |
673 @group | |
674 (setq sample-list '(a b c a b c)) | |
675 @result{} (a b c a b c) | |
676 @end group | |
677 @group | |
678 (remq 'a sample-list) | |
679 @result{} (b c b c) | |
680 @end group | |
681 @group | |
682 sample-list | |
683 @result{} (a b c a b c) | |
684 @end group | |
685 @end example | |
686 @noindent | |
687 The function @code{delq} offers a way to perform this operation | |
688 destructively. See @ref{Sets And Lists}. | |
689 @end defun | |
690 | |
6558 | 691 @node Modifying Lists |
692 @section Modifying Existing List Structure | |
22271
71f954d59214
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22253
diff
changeset
|
693 @cindex destructive list operations |
6558 | 694 |
695 You can modify the @sc{car} and @sc{cdr} contents of a cons cell with the | |
22271
71f954d59214
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22253
diff
changeset
|
696 primitives @code{setcar} and @code{setcdr}. We call these ``destructive'' |
71f954d59214
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22253
diff
changeset
|
697 operations because they change existing list structure. |
6558 | 698 |
699 @cindex CL note---@code{rplaca} vrs @code{setcar} | |
700 @quotation | |
701 @findex rplaca | |
702 @findex rplacd | |
703 @b{Common Lisp note:} Common Lisp uses functions @code{rplaca} and | |
704 @code{rplacd} to alter list structure; they change structure the same | |
705 way as @code{setcar} and @code{setcdr}, but the Common Lisp functions | |
706 return the cons cell while @code{setcar} and @code{setcdr} return the | |
707 new @sc{car} or @sc{cdr}. | |
708 @end quotation | |
709 | |
710 @menu | |
711 * Setcar:: Replacing an element in a list. | |
712 * Setcdr:: Replacing part of the list backbone. | |
713 This can be used to remove or add elements. | |
714 * Rearrangement:: Reordering the elements in a list; combining lists. | |
715 @end menu | |
716 | |
717 @node Setcar | |
718 @subsection Altering List Elements with @code{setcar} | |
719 | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
720 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
|
721 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
|
722 different element. |
6558 | 723 |
724 @defun setcar cons object | |
725 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
|
726 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
|
727 @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
|
728 value @var{object}. For example: |
6558 | 729 |
730 @example | |
731 @group | |
732 (setq x '(1 2)) | |
733 @result{} (1 2) | |
734 @end group | |
735 @group | |
736 (setcar x 4) | |
737 @result{} 4 | |
738 @end group | |
739 @group | |
740 x | |
741 @result{} (4 2) | |
742 @end group | |
743 @end example | |
744 @end defun | |
745 | |
746 When a cons cell is part of the shared structure of several lists, | |
747 storing a new @sc{car} into the cons changes one element of each of | |
748 these lists. Here is an example: | |
749 | |
750 @example | |
751 @group | |
752 ;; @r{Create two lists that are partly shared.} | |
753 (setq x1 '(a b c)) | |
754 @result{} (a b c) | |
755 (setq x2 (cons 'z (cdr x1))) | |
756 @result{} (z b c) | |
757 @end group | |
758 | |
759 @group | |
760 ;; @r{Replace the @sc{car} of a shared link.} | |
761 (setcar (cdr x1) 'foo) | |
762 @result{} foo | |
763 x1 ; @r{Both lists are changed.} | |
764 @result{} (a foo c) | |
765 x2 | |
766 @result{} (z foo c) | |
767 @end group | |
768 | |
769 @group | |
770 ;; @r{Replace the @sc{car} of a link that is not shared.} | |
771 (setcar x1 'baz) | |
772 @result{} baz | |
773 x1 ; @r{Only one list is changed.} | |
774 @result{} (baz foo c) | |
775 x2 | |
776 @result{} (z foo c) | |
777 @end group | |
778 @end example | |
779 | |
780 Here is a graphical depiction of the shared structure of the two lists | |
781 in the variables @code{x1} and @code{x2}, showing why replacing @code{b} | |
782 changes them both: | |
783 | |
784 @example | |
785 @group | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
786 --- --- --- --- --- --- |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
787 x1---> | | |----> | | |--> | | |--> nil |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
788 --- --- --- --- --- --- |
6558 | 789 | --> | | |
790 | | | | | |
791 --> a | --> b --> c | |
792 | | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
793 --- --- | |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
794 x2--> | | |-- |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
795 --- --- |
6558 | 796 | |
797 | | |
798 --> z | |
799 @end group | |
800 @end example | |
801 | |
802 Here is an alternative form of box diagram, showing the same relationship: | |
803 | |
804 @example | |
805 @group | |
806 x1: | |
807 -------------- -------------- -------------- | |
808 | car | cdr | | car | cdr | | car | cdr | | |
809 | a | o------->| b | o------->| c | nil | | |
810 | | | -->| | | | | | | |
811 -------------- | -------------- -------------- | |
812 | | |
813 x2: | | |
814 -------------- | | |
815 | car | cdr | | | |
816 | z | o---- | |
817 | | | | |
818 -------------- | |
819 @end group | |
820 @end example | |
821 | |
822 @node Setcdr | |
823 @subsection Altering the CDR of a List | |
824 | |
825 The lowest-level primitive for modifying a @sc{cdr} is @code{setcdr}: | |
826 | |
827 @defun setcdr cons object | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
828 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
|
829 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
|
830 @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
|
831 value @var{object}. |
6558 | 832 @end defun |
833 | |
834 Here is an example of replacing the @sc{cdr} of a list with a | |
835 different list. All but the first element of the list are removed in | |
836 favor of a different sequence of elements. The first element is | |
837 unchanged, because it resides in the @sc{car} of the list, and is not | |
838 reached via the @sc{cdr}. | |
839 | |
840 @example | |
841 @group | |
842 (setq x '(1 2 3)) | |
843 @result{} (1 2 3) | |
844 @end group | |
845 @group | |
846 (setcdr x '(4)) | |
847 @result{} (4) | |
848 @end group | |
849 @group | |
850 x | |
851 @result{} (1 4) | |
852 @end group | |
853 @end example | |
854 | |
855 You can delete elements from the middle of a list by altering the | |
856 @sc{cdr}s of the cons cells in the list. For example, here we delete | |
857 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
|
858 the @sc{cdr} of the first cons cell: |
6558 | 859 |
860 @example | |
861 @group | |
862 (setq x1 '(a b c)) | |
863 @result{} (a b c) | |
864 (setcdr x1 (cdr (cdr x1))) | |
865 @result{} (c) | |
866 x1 | |
867 @result{} (a c) | |
868 @end group | |
869 @end example | |
870 | |
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
|
871 @need 4000 |
6558 | 872 Here is the result in box notation: |
873 | |
874 @example | |
875 @group | |
876 -------------------- | |
877 | | | |
878 -------------- | -------------- | -------------- | |
879 | car | cdr | | | car | cdr | -->| car | cdr | | |
880 | a | o----- | b | o-------->| c | nil | | |
881 | | | | | | | | | | |
882 -------------- -------------- -------------- | |
883 @end group | |
884 @end example | |
885 | |
886 @noindent | |
887 The second cons cell, which previously held the element @code{b}, still | |
888 exists and its @sc{car} is still @code{b}, but it no longer forms part | |
889 of this list. | |
890 | |
891 It is equally easy to insert a new element by changing @sc{cdr}s: | |
892 | |
893 @example | |
894 @group | |
895 (setq x1 '(a b c)) | |
896 @result{} (a b c) | |
897 (setcdr x1 (cons 'd (cdr x1))) | |
898 @result{} (d b c) | |
899 x1 | |
900 @result{} (a d b c) | |
901 @end group | |
902 @end example | |
903 | |
904 Here is this result in box notation: | |
905 | |
906 @smallexample | |
907 @group | |
908 -------------- ------------- ------------- | |
909 | car | cdr | | car | cdr | | car | cdr | | |
910 | a | o | -->| b | o------->| c | nil | | |
911 | | | | | | | | | | | | |
912 --------- | -- | ------------- ------------- | |
913 | | | |
914 ----- -------- | |
915 | | | |
916 | --------------- | | |
917 | | car | cdr | | | |
918 -->| d | o------ | |
919 | | | | |
920 --------------- | |
921 @end group | |
922 @end smallexample | |
923 | |
924 @node Rearrangement | |
925 @subsection Functions that Rearrange Lists | |
926 @cindex rearrangement of lists | |
927 @cindex modification of lists | |
928 | |
929 Here are some functions that rearrange lists ``destructively'' by | |
930 modifying the @sc{cdr}s of their component cons cells. We call these | |
931 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
|
932 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
|
933 is the returned value. |
6558 | 934 |
27193 | 935 @ifnottex |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
936 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
|
937 that modifies cons cells. |
27193 | 938 @end ifnottex |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
939 @iftex |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
940 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
|
941 of destructive list manipulation. |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
942 @end iftex |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
943 |
6558 | 944 @defun nconc &rest lists |
945 @cindex concatenating lists | |
946 @cindex joining lists | |
947 This function returns a list containing all the elements of @var{lists}. | |
948 Unlike @code{append} (@pxref{Building Lists}), the @var{lists} are | |
949 @emph{not} copied. Instead, the last @sc{cdr} of each of the | |
950 @var{lists} is changed to refer to the following list. The last of the | |
951 @var{lists} is not altered. For example: | |
952 | |
953 @example | |
954 @group | |
955 (setq x '(1 2 3)) | |
956 @result{} (1 2 3) | |
957 @end group | |
958 @group | |
959 (nconc x '(4 5)) | |
960 @result{} (1 2 3 4 5) | |
961 @end group | |
962 @group | |
963 x | |
964 @result{} (1 2 3 4 5) | |
965 @end group | |
966 @end example | |
967 | |
968 Since the last argument of @code{nconc} is not itself modified, it is | |
969 reasonable to use a constant list, such as @code{'(4 5)}, as in the | |
970 above example. For the same reason, the last argument need not be a | |
971 list: | |
972 | |
973 @example | |
974 @group | |
975 (setq x '(1 2 3)) | |
976 @result{} (1 2 3) | |
977 @end group | |
978 @group | |
979 (nconc x 'z) | |
980 @result{} (1 2 3 . z) | |
981 @end group | |
982 @group | |
983 x | |
984 @result{} (1 2 3 . z) | |
985 @end group | |
986 @end example | |
987 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
988 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
|
989 |
6558 | 990 A common pitfall is to use a quoted constant list as a non-last |
991 argument to @code{nconc}. If you do this, your program will change | |
992 each time you run it! Here is what happens: | |
993 | |
994 @smallexample | |
995 @group | |
996 (defun add-foo (x) ; @r{We want this function to add} | |
997 (nconc '(foo) x)) ; @r{@code{foo} to the front of its arg.} | |
998 @end group | |
999 | |
1000 @group | |
1001 (symbol-function 'add-foo) | |
1002 @result{} (lambda (x) (nconc (quote (foo)) x)) | |
1003 @end group | |
1004 | |
1005 @group | |
1006 (setq xx (add-foo '(1 2))) ; @r{It seems to work.} | |
1007 @result{} (foo 1 2) | |
1008 @end group | |
1009 @group | |
1010 (setq xy (add-foo '(3 4))) ; @r{What happened?} | |
1011 @result{} (foo 1 2 3 4) | |
1012 @end group | |
1013 @group | |
1014 (eq xx xy) | |
1015 @result{} t | |
1016 @end group | |
1017 | |
1018 @group | |
1019 (symbol-function 'add-foo) | |
1020 @result{} (lambda (x) (nconc (quote (foo 1 2 3 4) x))) | |
1021 @end group | |
1022 @end smallexample | |
1023 @end defun | |
1024 | |
1025 @defun nreverse list | |
1026 @cindex reversing a list | |
1027 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
|
1028 Unlike @code{reverse}, @code{nreverse} alters its argument by reversing |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1029 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
|
1030 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
|
1031 value. |
6558 | 1032 |
1033 For example: | |
1034 | |
1035 @example | |
1036 @group | |
1037 (setq x '(1 2 3 4)) | |
1038 @result{} (1 2 3 4) | |
1039 @end group | |
1040 @group | |
1041 x | |
1042 @result{} (1 2 3 4) | |
1043 (nreverse x) | |
1044 @result{} (4 3 2 1) | |
1045 @end group | |
1046 @group | |
22253
ed6b191416cf
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
1047 ;; @r{The cons cell that was first is now last.} |
6558 | 1048 x |
1049 @result{} (1) | |
1050 @end group | |
1051 @end example | |
1052 | |
1053 To avoid confusion, we usually store the result of @code{nreverse} | |
1054 back in the same variable which held the original list: | |
1055 | |
1056 @example | |
1057 (setq x (nreverse x)) | |
1058 @end example | |
1059 | |
1060 Here is the @code{nreverse} of our favorite example, @code{(a b c)}, | |
1061 presented graphically: | |
1062 | |
1063 @smallexample | |
1064 @group | |
1065 @r{Original list head:} @r{Reversed list:} | |
1066 ------------- ------------- ------------ | |
1067 | car | cdr | | car | cdr | | car | cdr | | |
1068 | a | nil |<-- | b | o |<-- | c | o | | |
1069 | | | | | | | | | | | | | | |
1070 ------------- | --------- | - | -------- | - | |
1071 | | | | | |
1072 ------------- ------------ | |
1073 @end group | |
1074 @end smallexample | |
1075 @end defun | |
1076 | |
1077 @defun sort list predicate | |
1078 @cindex stable sort | |
1079 @cindex sorting lists | |
1080 This function sorts @var{list} stably, though destructively, and | |
1081 returns the sorted list. It compares elements using @var{predicate}. A | |
1082 stable sort is one in which elements with equal sort keys maintain their | |
1083 relative order before and after the sort. Stability is important when | |
1084 successive sorts are used to order elements according to different | |
1085 criteria. | |
1086 | |
1087 The argument @var{predicate} must be a function that accepts two | |
1088 arguments. It is called with two elements of @var{list}. To get an | |
1089 increasing order sort, the @var{predicate} should return @code{t} if the | |
1090 first element is ``less than'' the second, or @code{nil} if not. | |
1091 | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1092 The comparison function @var{predicate} must give reliable results for |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1093 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
|
1094 @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
|
1095 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
|
1096 @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
|
1097 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
|
1098 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
|
1099 result of @code{sort} is unpredictable. |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1100 |
6558 | 1101 The destructive aspect of @code{sort} is that it rearranges the cons |
1102 cells forming @var{list} by changing @sc{cdr}s. A nondestructive sort | |
1103 function would create new cons cells to store the elements in their | |
1104 sorted order. If you wish to make a sorted copy without destroying the | |
1105 original, copy it first with @code{copy-sequence} and then sort. | |
1106 | |
1107 Sorting does not change the @sc{car}s of the cons cells in @var{list}; | |
1108 the cons cell that originally contained the element @code{a} in | |
1109 @var{list} still has @code{a} in its @sc{car} after sorting, but it now | |
1110 appears in a different position in the list due to the change of | |
1111 @sc{cdr}s. For example: | |
1112 | |
1113 @example | |
1114 @group | |
1115 (setq nums '(1 3 2 6 5 4 0)) | |
1116 @result{} (1 3 2 6 5 4 0) | |
1117 @end group | |
1118 @group | |
1119 (sort nums '<) | |
1120 @result{} (0 1 2 3 4 5 6) | |
1121 @end group | |
1122 @group | |
1123 nums | |
1124 @result{} (1 2 3 4 5 6) | |
1125 @end group | |
1126 @end example | |
1127 | |
1128 @noindent | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
1129 @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
|
1130 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
|
1131 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
|
1132 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
|
1133 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
|
1134 the variable that held the original list: |
6558 | 1135 |
1136 @example | |
1137 (setq nums (sort nums '<)) | |
1138 @end example | |
1139 | |
1140 @xref{Sorting}, for more functions that perform sorting. | |
1141 See @code{documentation} in @ref{Accessing Documentation}, for a | |
1142 useful example of @code{sort}. | |
1143 @end defun | |
1144 | |
1145 @node Sets And Lists | |
1146 @section Using Lists as Sets | |
1147 @cindex lists as sets | |
1148 @cindex sets | |
1149 | |
1150 A list can represent an unordered mathematical set---simply consider a | |
1151 value an element of a set if it appears in the list, and ignore the | |
1152 order of the list. To form the union of two sets, use @code{append} (as | |
1153 long as you don't mind having duplicate elements). Other useful | |
1154 functions for sets include @code{memq} and @code{delq}, and their | |
1155 @code{equal} versions, @code{member} and @code{delete}. | |
1156 | |
13229 | 1157 @cindex CL note---lack @code{union}, @code{intersection} |
6558 | 1158 @quotation |
1159 @b{Common Lisp note:} Common Lisp has functions @code{union} (which | |
1160 avoids duplicate elements) and @code{intersection} for set operations, | |
1161 but GNU Emacs Lisp does not have them. You can write them in Lisp if | |
1162 you wish. | |
1163 @end quotation | |
1164 | |
1165 @defun memq object list | |
1166 @cindex membership in a list | |
1167 This function tests to see whether @var{object} is a member of | |
1168 @var{list}. If it is, @code{memq} returns a list starting with the | |
1169 first occurrence of @var{object}. Otherwise, it returns @code{nil}. | |
1170 The letter @samp{q} in @code{memq} says that it uses @code{eq} to | |
1171 compare @var{object} against the elements of the list. For example: | |
1172 | |
1173 @example | |
1174 @group | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1175 (memq 'b '(a b c b a)) |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1176 @result{} (b c b a) |
6558 | 1177 @end group |
1178 @group | |
1179 (memq '(2) '((1) (2))) ; @r{@code{(2)} and @code{(2)} are not @code{eq}.} | |
1180 @result{} nil | |
1181 @end group | |
1182 @end example | |
1183 @end defun | |
1184 | |
1185 @defun delq object list | |
1186 @cindex deletion of elements | |
1187 This function destructively removes all elements @code{eq} to | |
1188 @var{object} from @var{list}. The letter @samp{q} in @code{delq} says | |
1189 that it uses @code{eq} to compare @var{object} against the elements of | |
30808 | 1190 the list, like @code{memq} and @code{remq}. |
6558 | 1191 @end defun |
1192 | |
1193 When @code{delq} deletes elements from the front of the list, it does so | |
1194 simply by advancing down the list and returning a sublist that starts | |
1195 after those elements: | |
1196 | |
1197 @example | |
1198 @group | |
1199 (delq 'a '(a b c)) @equiv{} (cdr '(a b c)) | |
1200 @end group | |
1201 @end example | |
1202 | |
1203 When an element to be deleted appears in the middle of the list, | |
1204 removing it involves changing the @sc{cdr}s (@pxref{Setcdr}). | |
1205 | |
1206 @example | |
1207 @group | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1208 (setq sample-list '(a b c (4))) |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1209 @result{} (a b c (4)) |
6558 | 1210 @end group |
1211 @group | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1212 (delq 'a sample-list) |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1213 @result{} (b c (4)) |
6558 | 1214 @end group |
1215 @group | |
1216 sample-list | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1217 @result{} (a b c (4)) |
6558 | 1218 @end group |
1219 @group | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1220 (delq 'c sample-list) |
11628 | 1221 @result{} (a b (4)) |
6558 | 1222 @end group |
1223 @group | |
1224 sample-list | |
11628 | 1225 @result{} (a b (4)) |
6558 | 1226 @end group |
1227 @end example | |
1228 | |
12098 | 1229 Note that @code{(delq 'c sample-list)} modifies @code{sample-list} to |
1230 splice out the third element, but @code{(delq 'a sample-list)} does not | |
6558 | 1231 splice anything---it just returns a shorter list. Don't assume that a |
1232 variable which formerly held the argument @var{list} now has fewer | |
1233 elements, or that it still holds the original list! Instead, save the | |
1234 result of @code{delq} and use that. Most often we store the result back | |
1235 into the variable that held the original list: | |
1236 | |
1237 @example | |
1238 (setq flowers (delq 'rose flowers)) | |
1239 @end example | |
1240 | |
1241 In the following example, the @code{(4)} that @code{delq} attempts to match | |
1242 and the @code{(4)} in the @code{sample-list} are not @code{eq}: | |
1243 | |
1244 @example | |
1245 @group | |
1246 (delq '(4) sample-list) | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1247 @result{} (a c (4)) |
6558 | 1248 @end group |
1249 @end example | |
1250 | |
1251 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
|
1252 @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
|
1253 Predicates}. |
6558 | 1254 |
1255 @defun member object list | |
1256 The function @code{member} tests to see whether @var{object} is a member | |
1257 of @var{list}, comparing members with @var{object} using @code{equal}. | |
1258 If @var{object} is a member, @code{member} returns a list starting with | |
1259 its first occurrence in @var{list}. Otherwise, it returns @code{nil}. | |
1260 | |
1261 Compare this with @code{memq}: | |
1262 | |
1263 @example | |
1264 @group | |
1265 (member '(2) '((1) (2))) ; @r{@code{(2)} and @code{(2)} are @code{equal}.} | |
1266 @result{} ((2)) | |
1267 @end group | |
1268 @group | |
1269 (memq '(2) '((1) (2))) ; @r{@code{(2)} and @code{(2)} are not @code{eq}.} | |
1270 @result{} nil | |
1271 @end group | |
1272 @group | |
1273 ;; @r{Two strings with the same contents are @code{equal}.} | |
1274 (member "foo" '("foo" "bar")) | |
1275 @result{} ("foo" "bar") | |
1276 @end group | |
1277 @end example | |
1278 @end defun | |
1279 | |
30808 | 1280 @defun delete object sequence |
1281 If @code{sequence} is a list, this function destructively removes all | |
1282 elements @code{equal} to @var{object} from @var{sequence}. For lists, | |
1283 @code{delete} is to @code{delq} as @code{member} is to @code{memq}: it | |
1284 uses @code{equal} to compare elements with @var{object}, like | |
1285 @code{member}; when it finds an element that matches, it removes the | |
1286 element just as @code{delq} would. | |
1287 | |
1288 If @code{sequence} is a vector or string, @code{delete} returns a copy | |
1289 of @code{sequence} with all elements @code{equal} to @code{object} | |
1290 removed. | |
1291 | |
1292 For example: | |
6558 | 1293 |
1294 @example | |
1295 @group | |
1296 (delete '(2) '((2) (1) (2))) | |
13229 | 1297 @result{} ((1)) |
6558 | 1298 @end group |
30808 | 1299 @group |
1300 (delete '(2) [(2) (1) (2)]) | |
1301 @result{} [(1)] | |
1302 @end group | |
1303 @end example | |
1304 @end defun | |
1305 | |
1306 @defun remove object sequence | |
1307 This function is the non-destructive counterpart of @code{delete}. If | |
1308 returns a copy of @code{sequence}, a list, vector, or string, with | |
1309 elements @code{equal} to @code{object} removed. For example: | |
1310 | |
1311 @example | |
1312 @group | |
1313 (remove '(2) '((2) (1) (2))) | |
1314 @result{} ((1)) | |
1315 @end group | |
1316 @group | |
1317 (remove '(2) [(2) (1) (2)]) | |
1318 @result{} [(1)] | |
1319 @end group | |
6558 | 1320 @end example |
1321 @end defun | |
1322 | |
1323 @quotation | |
30808 | 1324 @b{Common Lisp note:} The functions @code{member}, @code{delete} and |
1325 @code{remove} in GNU Emacs Lisp are derived from Maclisp, not Common | |
1326 Lisp. The Common Lisp versions do not use @code{equal} to compare | |
1327 elements. | |
6558 | 1328 @end quotation |
1329 | |
12098 | 1330 See also the function @code{add-to-list}, in @ref{Setting Variables}, |
1331 for another way to add an element to a list stored in a variable. | |
1332 | |
6558 | 1333 @node Association Lists |
1334 @section Association Lists | |
1335 @cindex association list | |
1336 @cindex alist | |
1337 | |
1338 An @dfn{association list}, or @dfn{alist} for short, records a mapping | |
1339 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
|
1340 @dfn{associations}: the @sc{car} of each cons cell is the @dfn{key}, and the |
6558 | 1341 @sc{cdr} is the @dfn{associated value}.@footnote{This usage of ``key'' |
1342 is not related to the term ``key sequence''; it means a value used to | |
1343 look up an item in a table. In this case, the table is the alist, and | |
1344 the alist associations are the items.} | |
1345 | |
1346 Here is an example of an alist. The key @code{pine} is associated with | |
1347 the value @code{cones}; the key @code{oak} is associated with | |
1348 @code{acorns}; and the key @code{maple} is associated with @code{seeds}. | |
1349 | |
1350 @example | |
1351 @group | |
1352 '((pine . cones) | |
1353 (oak . acorns) | |
1354 (maple . seeds)) | |
1355 @end group | |
1356 @end example | |
1357 | |
1358 The associated values in an alist may be any Lisp objects; so may the | |
1359 keys. For example, in the following alist, the symbol @code{a} is | |
1360 associated with the number @code{1}, and the string @code{"b"} is | |
1361 associated with the @emph{list} @code{(2 3)}, which is the @sc{cdr} of | |
1362 the alist element: | |
1363 | |
1364 @example | |
1365 ((a . 1) ("b" 2 3)) | |
1366 @end example | |
1367 | |
1368 Sometimes it is better to design an alist to store the associated | |
1369 value in the @sc{car} of the @sc{cdr} of the element. Here is an | |
1370 example: | |
1371 | |
1372 @example | |
1373 '((rose red) (lily white) (buttercup yellow)) | |
1374 @end example | |
1375 | |
1376 @noindent | |
1377 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
|
1378 advantage of this kind of alist is that you can store other related |
6558 | 1379 information---even a list of other items---in the @sc{cdr} of the |
1380 @sc{cdr}. One disadvantage is that you cannot use @code{rassq} (see | |
1381 below) to find the element containing a given value. When neither of | |
1382 these considerations is important, the choice is a matter of taste, as | |
1383 long as you are consistent about it for any given alist. | |
1384 | |
1385 Note that the same alist shown above could be regarded as having the | |
1386 associated value in the @sc{cdr} of the element; the value associated | |
1387 with @code{rose} would be the list @code{(red)}. | |
1388 | |
1389 Association lists are often used to record information that you might | |
1390 otherwise keep on a stack, since new associations may be added easily to | |
1391 the front of the list. When searching an association list for an | |
1392 association with a given key, the first one found is returned, if there | |
1393 is more than one. | |
1394 | |
1395 In Emacs Lisp, it is @emph{not} an error if an element of an | |
1396 association list is not a cons cell. The alist search functions simply | |
1397 ignore such elements. Many other versions of Lisp signal errors in such | |
1398 cases. | |
1399 | |
1400 Note that property lists are similar to association lists in several | |
1401 respects. A property list behaves like an association list in which | |
1402 each key can occur only once. @xref{Property Lists}, for a comparison | |
1403 of property lists and association lists. | |
1404 | |
1405 @defun assoc key alist | |
1406 This function returns the first association for @var{key} in | |
1407 @var{alist}. It compares @var{key} against the alist elements using | |
1408 @code{equal} (@pxref{Equality Predicates}). It returns @code{nil} if no | |
1409 association in @var{alist} has a @sc{car} @code{equal} to @var{key}. | |
1410 For example: | |
1411 | |
1412 @smallexample | |
1413 (setq trees '((pine . cones) (oak . acorns) (maple . seeds))) | |
1414 @result{} ((pine . cones) (oak . acorns) (maple . seeds)) | |
1415 (assoc 'oak trees) | |
1416 @result{} (oak . acorns) | |
1417 (cdr (assoc 'oak trees)) | |
1418 @result{} acorns | |
1419 (assoc 'birch trees) | |
1420 @result{} nil | |
1421 @end smallexample | |
1422 | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1423 Here is another example, in which the keys and values are not symbols: |
6558 | 1424 |
1425 @smallexample | |
1426 (setq needles-per-cluster | |
1427 '((2 "Austrian Pine" "Red Pine") | |
1428 (3 "Pitch Pine") | |
1429 (5 "White Pine"))) | |
1430 | |
1431 (cdr (assoc 3 needles-per-cluster)) | |
1432 @result{} ("Pitch Pine") | |
1433 (cdr (assoc 2 needles-per-cluster)) | |
1434 @result{} ("Austrian Pine" "Red Pine") | |
1435 @end smallexample | |
1436 @end defun | |
1437 | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1438 The functions @code{assoc-ignore-representation} and |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1439 @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
|
1440 @code{compare-strings} to do the comparison. @xref{Text Comparison}. |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1441 |
12067 | 1442 @defun rassoc value alist |
1443 This function returns the first association with value @var{value} in | |
1444 @var{alist}. It returns @code{nil} if no association in @var{alist} has | |
1445 a @sc{cdr} @code{equal} to @var{value}. | |
1446 | |
1447 @code{rassoc} is like @code{assoc} except that it compares the @sc{cdr} of | |
1448 each @var{alist} association instead of the @sc{car}. You can think of | |
1449 this as ``reverse @code{assoc}'', finding the key for a given value. | |
1450 @end defun | |
1451 | |
6558 | 1452 @defun assq key alist |
1453 This function is like @code{assoc} in that it returns the first | |
1454 association for @var{key} in @var{alist}, but it makes the comparison | |
1455 using @code{eq} instead of @code{equal}. @code{assq} returns @code{nil} | |
1456 if no association in @var{alist} has a @sc{car} @code{eq} to @var{key}. | |
1457 This function is used more often than @code{assoc}, since @code{eq} is | |
1458 faster than @code{equal} and most alists use symbols as keys. | |
1459 @xref{Equality Predicates}. | |
1460 | |
1461 @smallexample | |
1462 (setq trees '((pine . cones) (oak . acorns) (maple . seeds))) | |
1463 @result{} ((pine . cones) (oak . acorns) (maple . seeds)) | |
1464 (assq 'pine trees) | |
1465 @result{} (pine . cones) | |
1466 @end smallexample | |
1467 | |
1468 On the other hand, @code{assq} is not usually useful in alists where the | |
1469 keys may not be symbols: | |
1470 | |
1471 @smallexample | |
1472 (setq leaves | |
1473 '(("simple leaves" . oak) | |
1474 ("compound leaves" . horsechestnut))) | |
1475 | |
1476 (assq "simple leaves" leaves) | |
1477 @result{} nil | |
1478 (assoc "simple leaves" leaves) | |
1479 @result{} ("simple leaves" . oak) | |
1480 @end smallexample | |
1481 @end defun | |
1482 | |
1483 @defun rassq value alist | |
1484 This function returns the first association with value @var{value} in | |
1485 @var{alist}. It returns @code{nil} if no association in @var{alist} has | |
1486 a @sc{cdr} @code{eq} to @var{value}. | |
1487 | |
1488 @code{rassq} is like @code{assq} except that it compares the @sc{cdr} of | |
1489 each @var{alist} association instead of the @sc{car}. You can think of | |
1490 this as ``reverse @code{assq}'', finding the key for a given value. | |
1491 | |
1492 For example: | |
1493 | |
1494 @smallexample | |
1495 (setq trees '((pine . cones) (oak . acorns) (maple . seeds))) | |
1496 | |
1497 (rassq 'acorns trees) | |
1498 @result{} (oak . acorns) | |
1499 (rassq 'spores trees) | |
1500 @result{} nil | |
1501 @end smallexample | |
1502 | |
1503 Note that @code{rassq} cannot search for a value stored in the @sc{car} | |
1504 of the @sc{cdr} of an element: | |
1505 | |
1506 @smallexample | |
1507 (setq colors '((rose red) (lily white) (buttercup yellow))) | |
1508 | |
1509 (rassq 'white colors) | |
1510 @result{} nil | |
1511 @end smallexample | |
1512 | |
1513 In this case, the @sc{cdr} of the association @code{(lily white)} is not | |
1514 the symbol @code{white}, but rather the list @code{(white)}. This | |
1515 becomes clearer if the association is written in dotted pair notation: | |
1516 | |
1517 @smallexample | |
1518 (lily white) @equiv{} (lily . (white)) | |
1519 @end smallexample | |
1520 @end defun | |
1521 | |
22961
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1522 @defun assoc-default key alist test default |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1523 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
|
1524 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
|
1525 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
|
1526 @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
|
1527 @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
|
1528 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
|
1529 regular expressions (@pxref{Regexp Search}). If @var{test} is omitted |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1530 or @code{nil}, @code{equal} is used for comparison. |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1531 |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1532 If an alist element matches @var{key} by this criterion, |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1533 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
|
1534 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
|
1535 Otherwise, the return value is @var{default}. |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1536 |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1537 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
|
1538 @code{nil}. |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1539 @end defun |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1540 |
6558 | 1541 @defun copy-alist alist |
1542 @cindex copying alists | |
1543 This function returns a two-level deep copy of @var{alist}: it creates a | |
1544 new copy of each association, so that you can alter the associations of | |
1545 the new alist without changing the old one. | |
1546 | |
1547 @smallexample | |
1548 @group | |
1549 (setq needles-per-cluster | |
1550 '((2 . ("Austrian Pine" "Red Pine")) | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1551 (3 . ("Pitch Pine")) |
7734 | 1552 @end group |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1553 (5 . ("White Pine")))) |
6558 | 1554 @result{} |
1555 ((2 "Austrian Pine" "Red Pine") | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1556 (3 "Pitch Pine") |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1557 (5 "White Pine")) |
6558 | 1558 |
1559 (setq copy (copy-alist needles-per-cluster)) | |
1560 @result{} | |
1561 ((2 "Austrian Pine" "Red Pine") | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1562 (3 "Pitch Pine") |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1563 (5 "White Pine")) |
6558 | 1564 |
1565 (eq needles-per-cluster copy) | |
1566 @result{} nil | |
1567 (equal needles-per-cluster copy) | |
1568 @result{} t | |
1569 (eq (car needles-per-cluster) (car copy)) | |
1570 @result{} nil | |
1571 (cdr (car (cdr needles-per-cluster))) | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1572 @result{} ("Pitch Pine") |
7734 | 1573 @group |
6558 | 1574 (eq (cdr (car (cdr needles-per-cluster))) |
1575 (cdr (car (cdr copy)))) | |
1576 @result{} t | |
1577 @end group | |
7337
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7118
diff
changeset
|
1578 @end smallexample |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1579 |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1580 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
|
1581 the associations of one copy without affecting the other: |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1582 |
7337
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7118
diff
changeset
|
1583 @smallexample |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1584 @group |
11137 | 1585 (setcdr (assq 3 copy) '("Martian Vacuum Pine")) |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1586 (cdr (assq 3 needles-per-cluster)) |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1587 @result{} ("Pitch Pine") |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1588 @end group |
6558 | 1589 @end smallexample |
1590 @end defun | |
1591 | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1592 @defun assoc-delete-all key alist |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1593 @tindex assoc-delete-all |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1594 This function deletes from @var{alist} all the elements whose @sc{car} |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1595 is @var{key}. It returns the modified alist. |
6558 | 1596 |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1597 @example |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1598 (assoc-delete-all 'foo |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1599 '((foo 1) (bar 2) (foo 3) (lose 4))) |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1600 @result{} ((bar 2) (lose 4)) |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1601 @end example |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1602 @end defun |