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