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