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