Mercurial > emacs
annotate lispref/lists.texi @ 76917:4b93b4ef75ad
*** empty log message ***
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 03 Apr 2007 11:14:15 +0000 |
parents | 1eb21d4498cf |
children | 1f4b88ab053d |
rev | line source |
---|---|
6558 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
75250
6d19c76d81c5
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
73783
diff
changeset
|
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001, |
6d19c76d81c5
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
73783
diff
changeset
|
4 @c 2002, 2003, 2004, 2005, 2006, 2007 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. | |
72103
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
23 * List Variables:: Modifying lists stored in variables. |
6558 | 24 * Modifying Lists:: Storing new pieces into an existing list. |
25 * Sets And Lists:: A list can represent a finite mathematical set. | |
26 * Association Lists:: A list can represent a finite relation or mapping. | |
63541 | 27 * Rings:: Managing a fixed-size ring of objects. |
6558 | 28 @end menu |
29 | |
30 @node Cons Cells | |
31 @section Lists and Cons Cells | |
32 @cindex lists and cons cells | |
33 @cindex @code{nil} and lists | |
34 | |
35 Lists in Lisp are not a primitive data type; they are built up from | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
36 @dfn{cons cells}. A cons cell is a data object that represents an |
27068
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
37 ordered pair. That is, it has two slots, and each slot @dfn{holds}, or |
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
38 @dfn{refers to}, some Lisp object. One slot is known as the @sc{car}, |
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
39 and the other is known as the @sc{cdr}. (These names are traditional; |
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
40 see @ref{Cons Cell Type}.) @sc{cdr} is pronounced ``could-er.'' |
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
41 |
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
42 We say that ``the @sc{car} of this cons cell is'' whatever object |
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
43 its @sc{car} slot currently holds, and likewise for the @sc{cdr}. |
6558 | 44 |
27068
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
45 A list is a series of cons cells ``chained together,'' so that each |
27332
5cfe77eaff45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27193
diff
changeset
|
46 cell refers to the next one. There is one cons cell for each element of |
27068
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
47 the list. By convention, the @sc{car}s of the cons cells hold the |
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
48 elements of the list, and the @sc{cdr}s are used to chain the list: the |
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
49 @sc{cdr} slot of each cons cell refers to the following cons cell. The |
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
50 @sc{cdr} of the last cons cell is @code{nil}. This asymmetry between |
d00d63002726
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25751
diff
changeset
|
51 the @sc{car} and the @sc{cdr} is entirely a matter of convention; at the |
6558 | 52 level of cons cells, the @sc{car} and @sc{cdr} slots have the same |
53 characteristics. | |
54 | |
55735
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
55 @cindex true list |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
56 Since @code{nil} is the conventional value to put in the @sc{cdr} of |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
57 the last cons cell in the list, we call that case a @dfn{true list}. |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
58 |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
59 In Lisp, we consider the symbol @code{nil} a list as well as a |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
60 symbol; it is the list with no elements. For convenience, the symbol |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
61 @code{nil} is considered to have @code{nil} as its @sc{cdr} (and also |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
62 as its @sc{car}). Therefore, the @sc{cdr} of a true list is always a |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
63 true list. |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
64 |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
65 @cindex dotted list |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
66 @cindex circular list |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
67 If the @sc{cdr} of a list's last cons cell is some other value, |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
68 neither @code{nil} nor another cons cell, we call the structure a |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
69 @dfn{dotted list}, since its printed representation would use |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
70 @samp{.}. There is one other possibility: some cons cell's @sc{cdr} |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
71 could point to one of the previous cons cells in the list. We call |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
72 that structure a @dfn{circular list}. |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
73 |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
74 For some purposes, it does not matter whether a list is true, |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
75 circular or dotted. If the program doesn't look far enough down the |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
76 list to see the @sc{cdr} of the final cons cell, it won't care. |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
77 However, some functions that operate on lists demand true lists and |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
78 signal errors if given a dotted list. Most functions that try to find |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
79 the end of a list enter infinite loops if given a circular list. |
1874eee23678
(Cons Cells): Explain dotted lists, true lists, circular lists.
Richard M. Stallman <rms@gnu.org>
parents:
54945
diff
changeset
|
80 |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
81 @cindex list structure |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
82 Because most cons cells are used as part of lists, the phrase |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
83 @dfn{list structure} has come to mean any structure made out of cons |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
84 cells. |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
85 |
68442
769699384b30
(Cons Cells): Minor correction (the cdr of a dotted list is not
Luc Teirlinck <teirllm@auburn.edu>
parents:
64889
diff
changeset
|
86 The @sc{cdr} of any nonempty true list @var{l} is a list containing all the |
6558 | 87 elements of @var{l} except the first. |
88 | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
89 @xref{Cons Cell Type}, for the read and print syntax of cons cells and |
60053
ce7d7b779c21
(Lists): Remove reference to deleted node.
Lute Kamstra <lute@gnu.org>
parents:
60040
diff
changeset
|
90 lists, and for ``box and arrow'' illustrations of lists. |
6558 | 91 |
92 @node List-related Predicates | |
93 @section Predicates on Lists | |
94 | |
60040
24dd4b5475b4
(List-related Predicates): Minor wording improvement.
Richard M. Stallman <rms@gnu.org>
parents:
56215
diff
changeset
|
95 The following predicates test whether a Lisp object is an atom, |
24dd4b5475b4
(List-related Predicates): Minor wording improvement.
Richard M. Stallman <rms@gnu.org>
parents:
56215
diff
changeset
|
96 whether it is a cons cell or is a list, or whether it is the |
24dd4b5475b4
(List-related Predicates): Minor wording improvement.
Richard M. Stallman <rms@gnu.org>
parents:
56215
diff
changeset
|
97 distinguished object @code{nil}. (Many of these predicates can be |
24dd4b5475b4
(List-related Predicates): Minor wording improvement.
Richard M. Stallman <rms@gnu.org>
parents:
56215
diff
changeset
|
98 defined in terms of the others, but they are used so often that it is |
24dd4b5475b4
(List-related Predicates): Minor wording improvement.
Richard M. Stallman <rms@gnu.org>
parents:
56215
diff
changeset
|
99 worth having all of them.) |
6558 | 100 |
101 @defun consp object | |
102 This function returns @code{t} if @var{object} is a cons cell, @code{nil} | |
103 otherwise. @code{nil} is not a cons cell, although it @emph{is} a list. | |
104 @end defun | |
105 | |
106 @defun atom object | |
107 @cindex atoms | |
108 This function returns @code{t} if @var{object} is an atom, @code{nil} | |
109 otherwise. All objects except cons cells are atoms. The symbol | |
110 @code{nil} is an atom and is also a list; it is the only Lisp object | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
111 that is both. |
6558 | 112 |
113 @example | |
114 (atom @var{object}) @equiv{} (not (consp @var{object})) | |
115 @end example | |
116 @end defun | |
117 | |
118 @defun listp object | |
119 This function returns @code{t} if @var{object} is a cons cell or | |
120 @code{nil}. Otherwise, it returns @code{nil}. | |
121 | |
122 @example | |
123 @group | |
124 (listp '(1)) | |
125 @result{} t | |
126 @end group | |
127 @group | |
128 (listp '()) | |
129 @result{} t | |
130 @end group | |
131 @end example | |
132 @end defun | |
133 | |
134 @defun nlistp object | |
135 This function is the opposite of @code{listp}: it returns @code{t} if | |
136 @var{object} is not a list. Otherwise, it returns @code{nil}. | |
137 | |
138 @example | |
139 (listp @var{object}) @equiv{} (not (nlistp @var{object})) | |
140 @end example | |
141 @end defun | |
142 | |
143 @defun null object | |
144 This function returns @code{t} if @var{object} is @code{nil}, and | |
145 returns @code{nil} otherwise. This function is identical to @code{not}, | |
146 but as a matter of clarity we use @code{null} when @var{object} is | |
147 considered a list and @code{not} when it is considered a truth value | |
148 (see @code{not} in @ref{Combining Conditions}). | |
149 | |
150 @example | |
151 @group | |
152 (null '(1)) | |
153 @result{} nil | |
154 @end group | |
155 @group | |
156 (null '()) | |
157 @result{} t | |
158 @end group | |
159 @end example | |
160 @end defun | |
161 | |
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 | |
434 @defun list &rest objects | |
435 This function creates a list with @var{objects} as its elements. The | |
436 resulting list is always @code{nil}-terminated. If no @var{objects} | |
437 are given, the empty list is returned. | |
438 | |
439 @example | |
440 @group | |
441 (list 1 2 3 4 5) | |
442 @result{} (1 2 3 4 5) | |
443 @end group | |
444 @group | |
445 (list 1 2 '(3 4 5) 'foo) | |
446 @result{} (1 2 (3 4 5) foo) | |
447 @end group | |
448 @group | |
449 (list) | |
450 @result{} nil | |
451 @end group | |
452 @end example | |
453 @end defun | |
454 | |
455 @defun make-list length object | |
38786 | 456 This function creates a list of @var{length} elements, in which each |
457 element is @var{object}. Compare @code{make-list} with | |
458 @code{make-string} (@pxref{Creating Strings}). | |
6558 | 459 |
460 @example | |
461 @group | |
462 (make-list 3 'pigs) | |
463 @result{} (pigs pigs pigs) | |
464 @end group | |
465 @group | |
466 (make-list 0 'pigs) | |
467 @result{} nil | |
468 @end group | |
38786 | 469 @group |
470 (setq l (make-list 3 '(a b)) | |
471 @result{} ((a b) (a b) (a b)) | |
472 (eq (car l) (cadr l)) | |
473 @result{} t | |
474 @end group | |
6558 | 475 @end example |
476 @end defun | |
477 | |
478 @defun append &rest sequences | |
479 @cindex copying lists | |
480 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
|
481 @var{sequences}. The @var{sequences} may be lists, vectors, |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
482 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
|
483 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
|
484 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
|
485 lists with no copying.) |
6558 | 486 |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
487 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
|
488 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
|
489 @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
|
490 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
|
491 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
|
492 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
|
493 in a true list. |
6558 | 494 |
53194
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
495 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
|
496 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
|
497 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
|
498 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
|
499 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
|
500 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
|
501 Strings}) or @code{number-to-string} (@pxref{String Conversion}). |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
502 @end defun |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
503 |
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
504 Here is an example of using @code{append}: |
6558 | 505 |
506 @example | |
507 @group | |
508 (setq trees '(pine oak)) | |
509 @result{} (pine oak) | |
510 (setq more-trees (append '(maple birch) trees)) | |
511 @result{} (maple birch pine oak) | |
512 @end group | |
513 | |
514 @group | |
515 trees | |
516 @result{} (pine oak) | |
517 more-trees | |
518 @result{} (maple birch pine oak) | |
519 @end group | |
520 @group | |
521 (eq trees (cdr (cdr more-trees))) | |
522 @result{} t | |
523 @end group | |
524 @end example | |
525 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
526 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
|
527 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
|
528 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
|
529 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
|
530 original list: |
6558 | 531 |
532 @smallexample | |
533 @group | |
534 more-trees trees | |
535 | | | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
536 | --- --- --- --- -> --- --- --- --- |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
537 --> | | |--> | | |--> | | |--> | | |--> nil |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
538 --- --- --- --- --- --- --- --- |
6558 | 539 | | | | |
540 | | | | | |
541 --> maple -->birch --> pine --> oak | |
542 @end group | |
543 @end smallexample | |
544 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
545 An empty sequence contributes nothing to the value returned by |
6558 | 546 @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
|
547 forces a copy of the previous argument: |
6558 | 548 |
549 @example | |
550 @group | |
551 trees | |
552 @result{} (pine oak) | |
553 @end group | |
554 @group | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
555 (setq wood (append trees nil)) |
6558 | 556 @result{} (pine oak) |
557 @end group | |
558 @group | |
559 wood | |
560 @result{} (pine oak) | |
561 @end group | |
562 @group | |
563 (eq wood trees) | |
564 @result{} nil | |
565 @end group | |
566 @end example | |
567 | |
568 @noindent | |
569 This once was the usual way to copy a list, before the function | |
570 @code{copy-sequence} was invented. @xref{Sequences Arrays Vectors}. | |
571 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
572 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
|
573 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
574 @example |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
575 @group |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
576 (append [a b] "cd" nil) |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
577 @result{} (a b 99 100) |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
578 @end group |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
579 @end example |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
580 |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
581 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
|
582 all the lists in a list of lists: |
6558 | 583 |
584 @example | |
585 @group | |
586 (apply 'append '((a b c) nil (x y z) nil)) | |
587 @result{} (a b c x y z) | |
588 @end group | |
589 @end example | |
590 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
591 If no @var{sequences} are given, @code{nil} is returned: |
6558 | 592 |
593 @example | |
594 @group | |
595 (append) | |
596 @result{} nil | |
597 @end group | |
598 @end example | |
599 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22271
diff
changeset
|
600 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
|
601 |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
602 @example |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
603 (append '(x y) 'z) |
12098 | 604 @result{} (x y . z) |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
605 (append '(x y) [z]) |
12098 | 606 @result{} (x y . [z]) |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
607 @end example |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
608 |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
609 @noindent |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
610 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
|
611 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
|
612 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
|
613 any other non-list final argument. |
6558 | 614 |
615 @defun reverse list | |
616 This function creates a new list whose elements are the elements of | |
617 @var{list}, but in reverse order. The original argument @var{list} is | |
618 @emph{not} altered. | |
619 | |
620 @example | |
621 @group | |
622 (setq x '(1 2 3 4)) | |
623 @result{} (1 2 3 4) | |
624 @end group | |
625 @group | |
626 (reverse x) | |
627 @result{} (4 3 2 1) | |
628 x | |
629 @result{} (1 2 3 4) | |
630 @end group | |
631 @end example | |
632 @end defun | |
633 | |
52484
c2a16cb1821e
(Building Lists): Add copy-tree.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
634 @defun copy-tree tree &optional vecp |
54945
70fd47f8342a
Add anchors. Some other minor changes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54264
diff
changeset
|
635 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
|
636 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
|
637 @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
|
638 same way. |
c2a16cb1821e
(Building Lists): Add copy-tree.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
639 |
c2a16cb1821e
(Building Lists): Add copy-tree.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
640 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
|
641 @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
|
642 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
|
643 their elements). |
c2a16cb1821e
(Building Lists): Add copy-tree.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
644 @end defun |
c2a16cb1821e
(Building Lists): Add copy-tree.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
645 |
53194
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
646 @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
|
647 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
|
648 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
|
649 @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
|
650 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
|
651 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
|
652 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
|
653 @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
|
654 because those arguments specify an empty sequence. |
24dd4b5475b4
(List-related Predicates): Minor wording improvement.
Richard M. Stallman <rms@gnu.org>
parents:
56215
diff
changeset
|
655 |
24dd4b5475b4
(List-related Predicates): Minor wording improvement.
Richard M. Stallman <rms@gnu.org>
parents:
56215
diff
changeset
|
656 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
|
657 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
|
658 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
|
659 |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
660 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
|
661 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
|
662 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
|
663 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
|
664 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
|
665 @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
|
666 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
|
667 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
|
668 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
|
669 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
|
670 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
|
671 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
|
672 |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
673 Some examples: |
52000
8aed6a3b153d
(Building Lists): Add number-sequence.
Richard M. Stallman <rms@gnu.org>
parents:
51703
diff
changeset
|
674 |
8aed6a3b153d
(Building Lists): Add number-sequence.
Richard M. Stallman <rms@gnu.org>
parents:
51703
diff
changeset
|
675 @example |
8aed6a3b153d
(Building Lists): Add number-sequence.
Richard M. Stallman <rms@gnu.org>
parents:
51703
diff
changeset
|
676 (number-sequence 4 9) |
8aed6a3b153d
(Building Lists): Add number-sequence.
Richard M. Stallman <rms@gnu.org>
parents:
51703
diff
changeset
|
677 @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
|
678 (number-sequence 9 4 -1) |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
679 @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
|
680 (number-sequence 9 4 -2) |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
681 @result{} (9 7 5) |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
682 (number-sequence 8) |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
683 @result{} (8) |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
684 (number-sequence 8 5) |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
685 @result{} nil |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
686 (number-sequence 5 8 -1) |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
687 @result{} nil |
52000
8aed6a3b153d
(Building Lists): Add number-sequence.
Richard M. Stallman <rms@gnu.org>
parents:
51703
diff
changeset
|
688 (number-sequence 1.5 6 2) |
8aed6a3b153d
(Building Lists): Add number-sequence.
Richard M. Stallman <rms@gnu.org>
parents:
51703
diff
changeset
|
689 @result{} (1.5 3.5 5.5) |
8aed6a3b153d
(Building Lists): Add number-sequence.
Richard M. Stallman <rms@gnu.org>
parents:
51703
diff
changeset
|
690 @end example |
8aed6a3b153d
(Building Lists): Add number-sequence.
Richard M. Stallman <rms@gnu.org>
parents:
51703
diff
changeset
|
691 @end defun |
8aed6a3b153d
(Building Lists): Add number-sequence.
Richard M. Stallman <rms@gnu.org>
parents:
51703
diff
changeset
|
692 |
72103
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
693 @node List Variables |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
694 @section Modifying List Variables |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
695 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
696 These functions, and one macro, provide convenient ways |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
697 to modify a list which is stored in a variable. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
698 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
699 @defmac push newelt listname |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
700 This macro provides an alternative way to write |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
701 @code{(setq @var{listname} (cons @var{newelt} @var{listname}))}. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
702 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
703 @example |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
704 (setq l '(a b)) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
705 @result{} (a b) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
706 (push 'c l) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
707 @result{} (c a b) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
708 l |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
709 @result{} (c a b) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
710 @end example |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
711 @end defmac |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
712 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
713 Two functions modify lists that are the values of variables. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
714 |
73783
f10635a2db58
(List Variables): Document COMPARE-FN.
Richard M. Stallman <rms@gnu.org>
parents:
73468
diff
changeset
|
715 @defun add-to-list symbol element &optional append compare-fn |
72103
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
716 This function sets the variable @var{symbol} by consing @var{element} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
717 onto the old value, if @var{element} is not already a member of that |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
718 value. It returns the resulting list, whether updated or not. The |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
719 value of @var{symbol} had better be a list already before the call. |
73783
f10635a2db58
(List Variables): Document COMPARE-FN.
Richard M. Stallman <rms@gnu.org>
parents:
73468
diff
changeset
|
720 @code{add-to-list} uses @var{compare-fn} to compare @var{element} |
f10635a2db58
(List Variables): Document COMPARE-FN.
Richard M. Stallman <rms@gnu.org>
parents:
73468
diff
changeset
|
721 against existing list members; if @var{compare-fn} is @code{nil}, it |
f10635a2db58
(List Variables): Document COMPARE-FN.
Richard M. Stallman <rms@gnu.org>
parents:
73468
diff
changeset
|
722 uses @code{equal}. |
72103
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
723 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
724 Normally, if @var{element} is added, it is added to the front of |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
725 @var{symbol}, but if the optional argument @var{append} is |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
726 non-@code{nil}, it is added at the end. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
727 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
728 The argument @var{symbol} is not implicitly quoted; @code{add-to-list} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
729 is an ordinary function, like @code{set} and unlike @code{setq}. Quote |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
730 the argument yourself if that is what you want. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
731 @end defun |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
732 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
733 Here's a scenario showing how to use @code{add-to-list}: |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
734 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
735 @example |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
736 (setq foo '(a b)) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
737 @result{} (a b) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
738 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
739 (add-to-list 'foo 'c) ;; @r{Add @code{c}.} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
740 @result{} (c a b) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
741 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
742 (add-to-list 'foo 'b) ;; @r{No effect.} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
743 @result{} (c a b) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
744 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
745 foo ;; @r{@code{foo} was changed.} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
746 @result{} (c a b) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
747 @end example |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
748 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
749 An equivalent expression for @code{(add-to-list '@var{var} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
750 @var{value})} is this: |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
751 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
752 @example |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
753 (or (member @var{value} @var{var}) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
754 (setq @var{var} (cons @var{value} @var{var}))) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
755 @end example |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
756 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
757 @defun add-to-ordered-list symbol element &optional order |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
758 This function sets the variable @var{symbol} by inserting |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
759 @var{element} into the old value, which must be a list, at the |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
760 position specified by @var{order}. If @var{element} is already a |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
761 member of the list, its position in the list is adjusted according |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
762 to @var{order}. Membership is tested using @code{eq}. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
763 This function returns the resulting list, whether updated or not. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
764 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
765 The @var{order} is typically a number (integer or float), and the |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
766 elements of the list are sorted in non-decreasing numerical order. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
767 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
768 @var{order} may also be omitted or @code{nil}. Then the numeric order |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
769 of @var{element} stays unchanged if it already has one; otherwise, |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
770 @var{element} has no numeric order. Elements without a numeric list |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
771 order are placed at the end of the list, in no particular order. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
772 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
773 Any other value for @var{order} removes the numeric order of @var{element} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
774 if it already has one; otherwise, it is equivalent to @code{nil}. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
775 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
776 The argument @var{symbol} is not implicitly quoted; |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
777 @code{add-to-ordered-list} is an ordinary function, like @code{set} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
778 and unlike @code{setq}. Quote the argument yourself if that is what |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
779 you want. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
780 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
781 The ordering information is stored in a hash table on @var{symbol}'s |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
782 @code{list-order} property. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
783 @end defun |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
784 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
785 Here's a scenario showing how to use @code{add-to-ordered-list}: |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
786 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
787 @example |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
788 (setq foo '()) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
789 @result{} nil |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
790 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
791 (add-to-ordered-list 'foo 'a 1) ;; @r{Add @code{a}.} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
792 @result{} (a) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
793 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
794 (add-to-ordered-list 'foo 'c 3) ;; @r{Add @code{c}.} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
795 @result{} (a c) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
796 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
797 (add-to-ordered-list 'foo 'b 2) ;; @r{Add @code{b}.} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
798 @result{} (a b c) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
799 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
800 (add-to-ordered-list 'foo 'b 4) ;; @r{Move @code{b}.} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
801 @result{} (a c b) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
802 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
803 (add-to-ordered-list 'foo 'd) ;; @r{Append @code{d}.} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
804 @result{} (a c b d) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
805 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
806 (add-to-ordered-list 'foo 'e) ;; @r{Add @code{e}}. |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
807 @result{} (a c b e d) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
808 |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
809 foo ;; @r{@code{foo} was changed.} |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
810 @result{} (a c b e d) |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
811 @end example |
a37e229962ce
(List Variables): New node.
Richard M. Stallman <rms@gnu.org>
parents:
71957
diff
changeset
|
812 |
6558 | 813 @node Modifying Lists |
814 @section Modifying Existing List Structure | |
22271
71f954d59214
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22253
diff
changeset
|
815 @cindex destructive list operations |
6558 | 816 |
817 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
|
818 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
|
819 operations because they change existing list structure. |
6558 | 820 |
63590
ffe64a60452e
(Rings): Various minor clarifications and corrections.
Luc Teirlinck <teirllm@auburn.edu>
parents:
63541
diff
changeset
|
821 @cindex CL note---@code{rplaca} vs @code{setcar} |
6558 | 822 @quotation |
823 @findex rplaca | |
824 @findex rplacd | |
825 @b{Common Lisp note:} Common Lisp uses functions @code{rplaca} and | |
826 @code{rplacd} to alter list structure; they change structure the same | |
827 way as @code{setcar} and @code{setcdr}, but the Common Lisp functions | |
828 return the cons cell while @code{setcar} and @code{setcdr} return the | |
829 new @sc{car} or @sc{cdr}. | |
830 @end quotation | |
831 | |
832 @menu | |
833 * Setcar:: Replacing an element in a list. | |
834 * Setcdr:: Replacing part of the list backbone. | |
835 This can be used to remove or add elements. | |
836 * Rearrangement:: Reordering the elements in a list; combining lists. | |
837 @end menu | |
838 | |
839 @node Setcar | |
840 @subsection Altering List Elements with @code{setcar} | |
841 | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
842 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
|
843 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
|
844 different element. |
6558 | 845 |
846 @defun setcar cons object | |
847 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
|
848 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
|
849 @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
|
850 value @var{object}. For example: |
6558 | 851 |
852 @example | |
853 @group | |
854 (setq x '(1 2)) | |
855 @result{} (1 2) | |
856 @end group | |
857 @group | |
858 (setcar x 4) | |
859 @result{} 4 | |
860 @end group | |
861 @group | |
862 x | |
863 @result{} (4 2) | |
864 @end group | |
865 @end example | |
866 @end defun | |
867 | |
868 When a cons cell is part of the shared structure of several lists, | |
869 storing a new @sc{car} into the cons changes one element of each of | |
870 these lists. Here is an example: | |
871 | |
872 @example | |
873 @group | |
874 ;; @r{Create two lists that are partly shared.} | |
875 (setq x1 '(a b c)) | |
876 @result{} (a b c) | |
877 (setq x2 (cons 'z (cdr x1))) | |
878 @result{} (z b c) | |
879 @end group | |
880 | |
881 @group | |
882 ;; @r{Replace the @sc{car} of a shared link.} | |
883 (setcar (cdr x1) 'foo) | |
884 @result{} foo | |
885 x1 ; @r{Both lists are changed.} | |
886 @result{} (a foo c) | |
887 x2 | |
888 @result{} (z foo c) | |
889 @end group | |
890 | |
891 @group | |
892 ;; @r{Replace the @sc{car} of a link that is not shared.} | |
893 (setcar x1 'baz) | |
894 @result{} baz | |
895 x1 ; @r{Only one list is changed.} | |
896 @result{} (baz foo c) | |
897 x2 | |
898 @result{} (z foo c) | |
899 @end group | |
900 @end example | |
901 | |
902 Here is a graphical depiction of the shared structure of the two lists | |
903 in the variables @code{x1} and @code{x2}, showing why replacing @code{b} | |
904 changes them both: | |
905 | |
906 @example | |
907 @group | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
908 --- --- --- --- --- --- |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
909 x1---> | | |----> | | |--> | | |--> nil |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
910 --- --- --- --- --- --- |
6558 | 911 | --> | | |
912 | | | | | |
913 --> a | --> b --> c | |
914 | | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
915 --- --- | |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
916 x2--> | | |-- |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
917 --- --- |
6558 | 918 | |
919 | | |
920 --> z | |
921 @end group | |
922 @end example | |
923 | |
924 Here is an alternative form of box diagram, showing the same relationship: | |
925 | |
926 @example | |
927 @group | |
928 x1: | |
929 -------------- -------------- -------------- | |
930 | car | cdr | | car | cdr | | car | cdr | | |
931 | a | o------->| b | o------->| c | nil | | |
932 | | | -->| | | | | | | |
933 -------------- | -------------- -------------- | |
934 | | |
935 x2: | | |
936 -------------- | | |
937 | car | cdr | | | |
938 | z | o---- | |
939 | | | | |
940 -------------- | |
941 @end group | |
942 @end example | |
943 | |
944 @node Setcdr | |
945 @subsection Altering the CDR of a List | |
946 | |
947 The lowest-level primitive for modifying a @sc{cdr} is @code{setcdr}: | |
948 | |
949 @defun setcdr cons object | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
950 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
|
951 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
|
952 @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
|
953 value @var{object}. |
6558 | 954 @end defun |
955 | |
956 Here is an example of replacing the @sc{cdr} of a list with a | |
957 different list. All but the first element of the list are removed in | |
958 favor of a different sequence of elements. The first element is | |
959 unchanged, because it resides in the @sc{car} of the list, and is not | |
960 reached via the @sc{cdr}. | |
961 | |
962 @example | |
963 @group | |
964 (setq x '(1 2 3)) | |
965 @result{} (1 2 3) | |
966 @end group | |
967 @group | |
968 (setcdr x '(4)) | |
969 @result{} (4) | |
970 @end group | |
971 @group | |
972 x | |
973 @result{} (1 4) | |
974 @end group | |
975 @end example | |
976 | |
977 You can delete elements from the middle of a list by altering the | |
978 @sc{cdr}s of the cons cells in the list. For example, here we delete | |
979 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
|
980 the @sc{cdr} of the first cons cell: |
6558 | 981 |
982 @example | |
983 @group | |
984 (setq x1 '(a b c)) | |
985 @result{} (a b c) | |
986 (setcdr x1 (cdr (cdr x1))) | |
987 @result{} (c) | |
988 x1 | |
989 @result{} (a c) | |
990 @end group | |
991 @end example | |
992 | |
993 Here is the result in box notation: | |
994 | |
76808 | 995 @smallexample |
6558 | 996 @group |
997 -------------------- | |
998 | | | |
999 -------------- | -------------- | -------------- | |
1000 | car | cdr | | | car | cdr | -->| car | cdr | | |
1001 | a | o----- | b | o-------->| c | nil | | |
1002 | | | | | | | | | | |
1003 -------------- -------------- -------------- | |
1004 @end group | |
76808 | 1005 @end smallexample |
6558 | 1006 |
1007 @noindent | |
1008 The second cons cell, which previously held the element @code{b}, still | |
1009 exists and its @sc{car} is still @code{b}, but it no longer forms part | |
1010 of this list. | |
1011 | |
1012 It is equally easy to insert a new element by changing @sc{cdr}s: | |
1013 | |
1014 @example | |
1015 @group | |
1016 (setq x1 '(a b c)) | |
1017 @result{} (a b c) | |
1018 (setcdr x1 (cons 'd (cdr x1))) | |
1019 @result{} (d b c) | |
1020 x1 | |
1021 @result{} (a d b c) | |
1022 @end group | |
1023 @end example | |
1024 | |
1025 Here is this result in box notation: | |
1026 | |
1027 @smallexample | |
1028 @group | |
1029 -------------- ------------- ------------- | |
1030 | car | cdr | | car | cdr | | car | cdr | | |
1031 | a | o | -->| b | o------->| c | nil | | |
1032 | | | | | | | | | | | | |
1033 --------- | -- | ------------- ------------- | |
1034 | | | |
1035 ----- -------- | |
1036 | | | |
1037 | --------------- | | |
1038 | | car | cdr | | | |
1039 -->| d | o------ | |
1040 | | | | |
1041 --------------- | |
1042 @end group | |
1043 @end smallexample | |
1044 | |
1045 @node Rearrangement | |
1046 @subsection Functions that Rearrange Lists | |
1047 @cindex rearrangement of lists | |
1048 @cindex modification of lists | |
1049 | |
1050 Here are some functions that rearrange lists ``destructively'' by | |
1051 modifying the @sc{cdr}s of their component cons cells. We call these | |
1052 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
|
1053 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
|
1054 is the returned value. |
6558 | 1055 |
27193 | 1056 @ifnottex |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1057 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
|
1058 that modifies cons cells. |
27193 | 1059 @end ifnottex |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1060 @iftex |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1061 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
|
1062 of destructive list manipulation. |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1063 @end iftex |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1064 |
6558 | 1065 @defun nconc &rest lists |
1066 @cindex concatenating lists | |
1067 @cindex joining lists | |
1068 This function returns a list containing all the elements of @var{lists}. | |
1069 Unlike @code{append} (@pxref{Building Lists}), the @var{lists} are | |
1070 @emph{not} copied. Instead, the last @sc{cdr} of each of the | |
1071 @var{lists} is changed to refer to the following list. The last of the | |
1072 @var{lists} is not altered. For example: | |
1073 | |
1074 @example | |
1075 @group | |
1076 (setq x '(1 2 3)) | |
1077 @result{} (1 2 3) | |
1078 @end group | |
1079 @group | |
1080 (nconc x '(4 5)) | |
1081 @result{} (1 2 3 4 5) | |
1082 @end group | |
1083 @group | |
1084 x | |
1085 @result{} (1 2 3 4 5) | |
1086 @end group | |
1087 @end example | |
1088 | |
1089 Since the last argument of @code{nconc} is not itself modified, it is | |
1090 reasonable to use a constant list, such as @code{'(4 5)}, as in the | |
1091 above example. For the same reason, the last argument need not be a | |
1092 list: | |
1093 | |
1094 @example | |
1095 @group | |
1096 (setq x '(1 2 3)) | |
1097 @result{} (1 2 3) | |
1098 @end group | |
1099 @group | |
1100 (nconc x 'z) | |
1101 @result{} (1 2 3 . z) | |
1102 @end group | |
1103 @group | |
1104 x | |
1105 @result{} (1 2 3 . z) | |
1106 @end group | |
1107 @end example | |
1108 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1109 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
|
1110 |
6558 | 1111 A common pitfall is to use a quoted constant list as a non-last |
1112 argument to @code{nconc}. If you do this, your program will change | |
1113 each time you run it! Here is what happens: | |
1114 | |
1115 @smallexample | |
1116 @group | |
1117 (defun add-foo (x) ; @r{We want this function to add} | |
1118 (nconc '(foo) x)) ; @r{@code{foo} to the front of its arg.} | |
1119 @end group | |
1120 | |
1121 @group | |
1122 (symbol-function 'add-foo) | |
1123 @result{} (lambda (x) (nconc (quote (foo)) x)) | |
1124 @end group | |
1125 | |
1126 @group | |
1127 (setq xx (add-foo '(1 2))) ; @r{It seems to work.} | |
1128 @result{} (foo 1 2) | |
1129 @end group | |
1130 @group | |
1131 (setq xy (add-foo '(3 4))) ; @r{What happened?} | |
1132 @result{} (foo 1 2 3 4) | |
1133 @end group | |
1134 @group | |
1135 (eq xx xy) | |
1136 @result{} t | |
1137 @end group | |
1138 | |
1139 @group | |
1140 (symbol-function 'add-foo) | |
1141 @result{} (lambda (x) (nconc (quote (foo 1 2 3 4) x))) | |
1142 @end group | |
1143 @end smallexample | |
1144 @end defun | |
1145 | |
1146 @defun nreverse list | |
1147 @cindex reversing a list | |
1148 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
|
1149 Unlike @code{reverse}, @code{nreverse} alters its argument by reversing |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1150 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
|
1151 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
|
1152 value. |
6558 | 1153 |
1154 For example: | |
1155 | |
1156 @example | |
1157 @group | |
38786 | 1158 (setq x '(a b c)) |
1159 @result{} (a b c) | |
6558 | 1160 @end group |
1161 @group | |
1162 x | |
38786 | 1163 @result{} (a b c) |
6558 | 1164 (nreverse x) |
38786 | 1165 @result{} (c b a) |
6558 | 1166 @end group |
1167 @group | |
22253
ed6b191416cf
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
1168 ;; @r{The cons cell that was first is now last.} |
6558 | 1169 x |
38786 | 1170 @result{} (a) |
6558 | 1171 @end group |
1172 @end example | |
1173 | |
1174 To avoid confusion, we usually store the result of @code{nreverse} | |
1175 back in the same variable which held the original list: | |
1176 | |
1177 @example | |
1178 (setq x (nreverse x)) | |
1179 @end example | |
1180 | |
1181 Here is the @code{nreverse} of our favorite example, @code{(a b c)}, | |
1182 presented graphically: | |
1183 | |
1184 @smallexample | |
1185 @group | |
1186 @r{Original list head:} @r{Reversed list:} | |
1187 ------------- ------------- ------------ | |
1188 | car | cdr | | car | cdr | | car | cdr | | |
1189 | a | nil |<-- | b | o |<-- | c | o | | |
1190 | | | | | | | | | | | | | | |
1191 ------------- | --------- | - | -------- | - | |
1192 | | | | | |
1193 ------------- ------------ | |
1194 @end group | |
1195 @end smallexample | |
1196 @end defun | |
1197 | |
1198 @defun sort list predicate | |
1199 @cindex stable sort | |
1200 @cindex sorting lists | |
1201 This function sorts @var{list} stably, though destructively, and | |
1202 returns the sorted list. It compares elements using @var{predicate}. A | |
1203 stable sort is one in which elements with equal sort keys maintain their | |
1204 relative order before and after the sort. Stability is important when | |
1205 successive sorts are used to order elements according to different | |
1206 criteria. | |
1207 | |
1208 The argument @var{predicate} must be a function that accepts two | |
1209 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
|
1210 increasing order sort, the @var{predicate} should return non-@code{nil} if the |
6558 | 1211 first element is ``less than'' the second, or @code{nil} if not. |
1212 | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1213 The comparison function @var{predicate} must give reliable results for |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1214 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
|
1215 @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
|
1216 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
|
1217 @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
|
1218 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
|
1219 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
|
1220 result of @code{sort} is unpredictable. |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1221 |
6558 | 1222 The destructive aspect of @code{sort} is that it rearranges the cons |
1223 cells forming @var{list} by changing @sc{cdr}s. A nondestructive sort | |
1224 function would create new cons cells to store the elements in their | |
1225 sorted order. If you wish to make a sorted copy without destroying the | |
1226 original, copy it first with @code{copy-sequence} and then sort. | |
1227 | |
1228 Sorting does not change the @sc{car}s of the cons cells in @var{list}; | |
1229 the cons cell that originally contained the element @code{a} in | |
1230 @var{list} still has @code{a} in its @sc{car} after sorting, but it now | |
1231 appears in a different position in the list due to the change of | |
1232 @sc{cdr}s. For example: | |
1233 | |
1234 @example | |
1235 @group | |
1236 (setq nums '(1 3 2 6 5 4 0)) | |
1237 @result{} (1 3 2 6 5 4 0) | |
1238 @end group | |
1239 @group | |
1240 (sort nums '<) | |
1241 @result{} (0 1 2 3 4 5 6) | |
1242 @end group | |
1243 @group | |
1244 nums | |
1245 @result{} (1 2 3 4 5 6) | |
1246 @end group | |
1247 @end example | |
1248 | |
1249 @noindent | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
13229
diff
changeset
|
1250 @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
|
1251 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
|
1252 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
|
1253 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
|
1254 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
|
1255 the variable that held the original list: |
6558 | 1256 |
1257 @example | |
1258 (setq nums (sort nums '<)) | |
1259 @end example | |
1260 | |
1261 @xref{Sorting}, for more functions that perform sorting. | |
1262 See @code{documentation} in @ref{Accessing Documentation}, for a | |
1263 useful example of @code{sort}. | |
1264 @end defun | |
1265 | |
1266 @node Sets And Lists | |
1267 @section Using Lists as Sets | |
1268 @cindex lists as sets | |
1269 @cindex sets | |
1270 | |
1271 A list can represent an unordered mathematical set---simply consider a | |
1272 value an element of a set if it appears in the list, and ignore the | |
1273 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
|
1274 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
|
1275 @code{equal} duplicates using @code{delete-dups}. Other useful |
6558 | 1276 functions for sets include @code{memq} and @code{delq}, and their |
1277 @code{equal} versions, @code{member} and @code{delete}. | |
1278 | |
13229 | 1279 @cindex CL note---lack @code{union}, @code{intersection} |
6558 | 1280 @quotation |
1281 @b{Common Lisp note:} Common Lisp has functions @code{union} (which | |
1282 avoids duplicate elements) and @code{intersection} for set operations, | |
1283 but GNU Emacs Lisp does not have them. You can write them in Lisp if | |
1284 you wish. | |
1285 @end quotation | |
1286 | |
1287 @defun memq object list | |
1288 @cindex membership in a list | |
1289 This function tests to see whether @var{object} is a member of | |
1290 @var{list}. If it is, @code{memq} returns a list starting with the | |
1291 first occurrence of @var{object}. Otherwise, it returns @code{nil}. | |
1292 The letter @samp{q} in @code{memq} says that it uses @code{eq} to | |
1293 compare @var{object} against the elements of the list. For example: | |
1294 | |
1295 @example | |
1296 @group | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1297 (memq 'b '(a b c b a)) |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1298 @result{} (b c b a) |
6558 | 1299 @end group |
1300 @group | |
1301 (memq '(2) '((1) (2))) ; @r{@code{(2)} and @code{(2)} are not @code{eq}.} | |
1302 @result{} nil | |
1303 @end group | |
1304 @end example | |
1305 @end defun | |
1306 | |
1307 @defun delq object list | |
1308 @cindex deletion of elements | |
1309 This function destructively removes all elements @code{eq} to | |
1310 @var{object} from @var{list}. The letter @samp{q} in @code{delq} says | |
1311 that it uses @code{eq} to compare @var{object} against the elements of | |
30808 | 1312 the list, like @code{memq} and @code{remq}. |
6558 | 1313 @end defun |
1314 | |
1315 When @code{delq} deletes elements from the front of the list, it does so | |
1316 simply by advancing down the list and returning a sublist that starts | |
1317 after those elements: | |
1318 | |
1319 @example | |
1320 @group | |
1321 (delq 'a '(a b c)) @equiv{} (cdr '(a b c)) | |
1322 @end group | |
1323 @end example | |
1324 | |
1325 When an element to be deleted appears in the middle of the list, | |
1326 removing it involves changing the @sc{cdr}s (@pxref{Setcdr}). | |
1327 | |
1328 @example | |
1329 @group | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1330 (setq sample-list '(a b c (4))) |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1331 @result{} (a b c (4)) |
6558 | 1332 @end group |
1333 @group | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1334 (delq 'a sample-list) |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1335 @result{} (b c (4)) |
6558 | 1336 @end group |
1337 @group | |
1338 sample-list | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1339 @result{} (a b c (4)) |
6558 | 1340 @end group |
1341 @group | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1342 (delq 'c sample-list) |
11628 | 1343 @result{} (a b (4)) |
6558 | 1344 @end group |
1345 @group | |
1346 sample-list | |
11628 | 1347 @result{} (a b (4)) |
6558 | 1348 @end group |
1349 @end example | |
1350 | |
12098 | 1351 Note that @code{(delq 'c sample-list)} modifies @code{sample-list} to |
1352 splice out the third element, but @code{(delq 'a sample-list)} does not | |
6558 | 1353 splice anything---it just returns a shorter list. Don't assume that a |
1354 variable which formerly held the argument @var{list} now has fewer | |
1355 elements, or that it still holds the original list! Instead, save the | |
1356 result of @code{delq} and use that. Most often we store the result back | |
1357 into the variable that held the original list: | |
1358 | |
1359 @example | |
1360 (setq flowers (delq 'rose flowers)) | |
1361 @end example | |
1362 | |
1363 In the following example, the @code{(4)} that @code{delq} attempts to match | |
1364 and the @code{(4)} in the @code{sample-list} are not @code{eq}: | |
1365 | |
1366 @example | |
1367 @group | |
1368 (delq '(4) sample-list) | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1369 @result{} (a c (4)) |
6558 | 1370 @end group |
1371 @end example | |
1372 | |
53428
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1373 @defun remq object list |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1374 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
|
1375 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
|
1376 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
|
1377 of @code{list}. |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1378 |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1379 @example |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1380 @group |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1381 (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
|
1382 @result{} (a b c a b c) |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1383 @end group |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1384 @group |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1385 (remq 'a sample-list) |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1386 @result{} (b c b c) |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1387 @end group |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1388 @group |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1389 sample-list |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1390 @result{} (a b c a b c) |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1391 @end group |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1392 @end example |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1393 @noindent |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1394 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
|
1395 destructively. See @ref{Sets And Lists}. |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1396 @end defun |
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1397 |
73326 | 1398 @defun memql object list |
73468
bfd9c13158fb
(Sets And Lists): Fix typos.
Nick Roberts <nickrob@snap.net.nz>
parents:
73326
diff
changeset
|
1399 The function @code{memql} tests to see whether @var{object} is a member |
73326 | 1400 of @var{list}, comparing members with @var{object} using @code{eql}, |
1401 so floating point elements are compared by value. | |
1402 If @var{object} is a member, @code{memql} returns a list starting with | |
1403 its first occurrence in @var{list}. Otherwise, it returns @code{nil}. | |
1404 | |
1405 Compare this with @code{memq}: | |
1406 | |
1407 @example | |
1408 @group | |
73468
bfd9c13158fb
(Sets And Lists): Fix typos.
Nick Roberts <nickrob@snap.net.nz>
parents:
73326
diff
changeset
|
1409 (memql 1.2 '(1.1 1.2 1.3)) ; @r{@code{1.2} and @code{1.2} are @code{eql}.} |
73326 | 1410 @result{} (1.2 1.3) |
1411 @end group | |
1412 @group | |
73468
bfd9c13158fb
(Sets And Lists): Fix typos.
Nick Roberts <nickrob@snap.net.nz>
parents:
73326
diff
changeset
|
1413 (memq 1.2 '(1.1 1.2 1.3)) ; @r{@code{1.2} and @code{1.2} are not @code{eq}.} |
73326 | 1414 @result{} nil |
1415 @end group | |
1416 @end example | |
1417 @end defun | |
1418 | |
53428
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1419 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
|
1420 @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
|
1421 elements. @xref{Equality Predicates}. |
6558 | 1422 |
1423 @defun member object list | |
1424 The function @code{member} tests to see whether @var{object} is a member | |
1425 of @var{list}, comparing members with @var{object} using @code{equal}. | |
1426 If @var{object} is a member, @code{member} returns a list starting with | |
1427 its first occurrence in @var{list}. Otherwise, it returns @code{nil}. | |
1428 | |
1429 Compare this with @code{memq}: | |
1430 | |
1431 @example | |
1432 @group | |
1433 (member '(2) '((1) (2))) ; @r{@code{(2)} and @code{(2)} are @code{equal}.} | |
1434 @result{} ((2)) | |
1435 @end group | |
1436 @group | |
1437 (memq '(2) '((1) (2))) ; @r{@code{(2)} and @code{(2)} are not @code{eq}.} | |
1438 @result{} nil | |
1439 @end group | |
1440 @group | |
1441 ;; @r{Two strings with the same contents are @code{equal}.} | |
1442 (member "foo" '("foo" "bar")) | |
1443 @result{} ("foo" "bar") | |
1444 @end group | |
1445 @end example | |
1446 @end defun | |
1447 | |
30808 | 1448 @defun delete object sequence |
1449 If @code{sequence} is a list, this function destructively removes all | |
1450 elements @code{equal} to @var{object} from @var{sequence}. For lists, | |
1451 @code{delete} is to @code{delq} as @code{member} is to @code{memq}: it | |
1452 uses @code{equal} to compare elements with @var{object}, like | |
1453 @code{member}; when it finds an element that matches, it removes the | |
1454 element just as @code{delq} would. | |
1455 | |
1456 If @code{sequence} is a vector or string, @code{delete} returns a copy | |
1457 of @code{sequence} with all elements @code{equal} to @code{object} | |
1458 removed. | |
1459 | |
1460 For example: | |
6558 | 1461 |
1462 @example | |
1463 @group | |
1464 (delete '(2) '((2) (1) (2))) | |
13229 | 1465 @result{} ((1)) |
6558 | 1466 @end group |
30808 | 1467 @group |
1468 (delete '(2) [(2) (1) (2)]) | |
1469 @result{} [(1)] | |
1470 @end group | |
1471 @end example | |
1472 @end defun | |
1473 | |
1474 @defun remove object sequence | |
1475 This function is the non-destructive counterpart of @code{delete}. If | |
1476 returns a copy of @code{sequence}, a list, vector, or string, with | |
1477 elements @code{equal} to @code{object} removed. For example: | |
1478 | |
1479 @example | |
1480 @group | |
1481 (remove '(2) '((2) (1) (2))) | |
1482 @result{} ((1)) | |
1483 @end group | |
1484 @group | |
1485 (remove '(2) [(2) (1) (2)]) | |
1486 @result{} [(1)] | |
1487 @end group | |
6558 | 1488 @end example |
1489 @end defun | |
1490 | |
1491 @quotation | |
30808 | 1492 @b{Common Lisp note:} The functions @code{member}, @code{delete} and |
1493 @code{remove} in GNU Emacs Lisp are derived from Maclisp, not Common | |
1494 Lisp. The Common Lisp versions do not use @code{equal} to compare | |
1495 elements. | |
6558 | 1496 @end quotation |
1497 | |
53194
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
1498 @defun member-ignore-case object list |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
1499 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
|
1500 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
|
1501 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
|
1502 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
|
1503 comparison. |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
1504 @end defun |
6bf4cf44dfb7
(Building Lists): `append' no longer accepts integer arguments.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52694
diff
changeset
|
1505 |
53644
5d6e643eb334
(Sets And Lists): Add delete-dups.
Luc Teirlinck <teirllm@auburn.edu>
parents:
53428
diff
changeset
|
1506 @defun delete-dups list |
5d6e643eb334
(Sets And Lists): Add delete-dups.
Luc Teirlinck <teirllm@auburn.edu>
parents:
53428
diff
changeset
|
1507 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
|
1508 @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
|
1509 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
|
1510 @code{delete-dups} keeps the first one. |
53644
5d6e643eb334
(Sets And Lists): Add delete-dups.
Luc Teirlinck <teirllm@auburn.edu>
parents:
53428
diff
changeset
|
1511 @end defun |
5d6e643eb334
(Sets And Lists): Add delete-dups.
Luc Teirlinck <teirllm@auburn.edu>
parents:
53428
diff
changeset
|
1512 |
72206
af7ed5869f92
(Sets And Lists): Update link for add-to-list.
Nick Roberts <nickrob@snap.net.nz>
parents:
72103
diff
changeset
|
1513 See also the function @code{add-to-list}, in @ref{List Variables}, |
12098 | 1514 for another way to add an element to a list stored in a variable. |
1515 | |
6558 | 1516 @node Association Lists |
1517 @section Association Lists | |
1518 @cindex association list | |
1519 @cindex alist | |
1520 | |
1521 An @dfn{association list}, or @dfn{alist} for short, records a mapping | |
1522 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
|
1523 @dfn{associations}: the @sc{car} of each cons cell is the @dfn{key}, and the |
6558 | 1524 @sc{cdr} is the @dfn{associated value}.@footnote{This usage of ``key'' |
1525 is not related to the term ``key sequence''; it means a value used to | |
1526 look up an item in a table. In this case, the table is the alist, and | |
1527 the alist associations are the items.} | |
1528 | |
1529 Here is an example of an alist. The key @code{pine} is associated with | |
1530 the value @code{cones}; the key @code{oak} is associated with | |
1531 @code{acorns}; and the key @code{maple} is associated with @code{seeds}. | |
1532 | |
1533 @example | |
1534 @group | |
38786 | 1535 ((pine . cones) |
1536 (oak . acorns) | |
1537 (maple . seeds)) | |
6558 | 1538 @end group |
1539 @end example | |
1540 | |
71922 | 1541 Both the values and the keys in an alist may be any Lisp objects. |
1542 For example, in the following alist, the symbol @code{a} is | |
6558 | 1543 associated with the number @code{1}, and the string @code{"b"} is |
1544 associated with the @emph{list} @code{(2 3)}, which is the @sc{cdr} of | |
1545 the alist element: | |
1546 | |
1547 @example | |
1548 ((a . 1) ("b" 2 3)) | |
1549 @end example | |
1550 | |
1551 Sometimes it is better to design an alist to store the associated | |
1552 value in the @sc{car} of the @sc{cdr} of the element. Here is an | |
38786 | 1553 example of such an alist: |
6558 | 1554 |
1555 @example | |
38786 | 1556 ((rose red) (lily white) (buttercup yellow)) |
6558 | 1557 @end example |
1558 | |
1559 @noindent | |
1560 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
|
1561 advantage of this kind of alist is that you can store other related |
6558 | 1562 information---even a list of other items---in the @sc{cdr} of the |
1563 @sc{cdr}. One disadvantage is that you cannot use @code{rassq} (see | |
1564 below) to find the element containing a given value. When neither of | |
1565 these considerations is important, the choice is a matter of taste, as | |
1566 long as you are consistent about it for any given alist. | |
1567 | |
71922 | 1568 The same alist shown above could be regarded as having the |
6558 | 1569 associated value in the @sc{cdr} of the element; the value associated |
1570 with @code{rose} would be the list @code{(red)}. | |
1571 | |
1572 Association lists are often used to record information that you might | |
1573 otherwise keep on a stack, since new associations may be added easily to | |
1574 the front of the list. When searching an association list for an | |
1575 association with a given key, the first one found is returned, if there | |
1576 is more than one. | |
1577 | |
1578 In Emacs Lisp, it is @emph{not} an error if an element of an | |
1579 association list is not a cons cell. The alist search functions simply | |
1580 ignore such elements. Many other versions of Lisp signal errors in such | |
1581 cases. | |
1582 | |
1583 Note that property lists are similar to association lists in several | |
1584 respects. A property list behaves like an association list in which | |
1585 each key can occur only once. @xref{Property Lists}, for a comparison | |
1586 of property lists and association lists. | |
1587 | |
1588 @defun assoc key alist | |
1589 This function returns the first association for @var{key} in | |
76808 | 1590 @var{alist}, comparing @var{key} against the alist elements using |
6558 | 1591 @code{equal} (@pxref{Equality Predicates}). It returns @code{nil} if no |
1592 association in @var{alist} has a @sc{car} @code{equal} to @var{key}. | |
1593 For example: | |
1594 | |
1595 @smallexample | |
1596 (setq trees '((pine . cones) (oak . acorns) (maple . seeds))) | |
1597 @result{} ((pine . cones) (oak . acorns) (maple . seeds)) | |
1598 (assoc 'oak trees) | |
1599 @result{} (oak . acorns) | |
1600 (cdr (assoc 'oak trees)) | |
1601 @result{} acorns | |
1602 (assoc 'birch trees) | |
1603 @result{} nil | |
1604 @end smallexample | |
1605 | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1606 Here is another example, in which the keys and values are not symbols: |
6558 | 1607 |
1608 @smallexample | |
1609 (setq needles-per-cluster | |
1610 '((2 "Austrian Pine" "Red Pine") | |
1611 (3 "Pitch Pine") | |
1612 (5 "White Pine"))) | |
1613 | |
1614 (cdr (assoc 3 needles-per-cluster)) | |
1615 @result{} ("Pitch Pine") | |
1616 (cdr (assoc 2 needles-per-cluster)) | |
1617 @result{} ("Austrian Pine" "Red Pine") | |
1618 @end smallexample | |
1619 @end defun | |
1620 | |
53428
ccd937cd7241
(Building Lists): remq moved elsewhere.
Richard M. Stallman <rms@gnu.org>
parents:
53194
diff
changeset
|
1621 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
|
1622 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
|
1623 Comparison}. |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1624 |
12067 | 1625 @defun rassoc value alist |
1626 This function returns the first association with value @var{value} in | |
1627 @var{alist}. It returns @code{nil} if no association in @var{alist} has | |
1628 a @sc{cdr} @code{equal} to @var{value}. | |
1629 | |
1630 @code{rassoc} is like @code{assoc} except that it compares the @sc{cdr} of | |
1631 each @var{alist} association instead of the @sc{car}. You can think of | |
71957
61cb5aae3bc3
Put period and comma inside quotes.
Richard M. Stallman <rms@gnu.org>
parents:
71922
diff
changeset
|
1632 this as ``reverse @code{assoc},'' finding the key for a given value. |
12067 | 1633 @end defun |
1634 | |
6558 | 1635 @defun assq key alist |
1636 This function is like @code{assoc} in that it returns the first | |
1637 association for @var{key} in @var{alist}, but it makes the comparison | |
1638 using @code{eq} instead of @code{equal}. @code{assq} returns @code{nil} | |
1639 if no association in @var{alist} has a @sc{car} @code{eq} to @var{key}. | |
1640 This function is used more often than @code{assoc}, since @code{eq} is | |
1641 faster than @code{equal} and most alists use symbols as keys. | |
1642 @xref{Equality Predicates}. | |
1643 | |
1644 @smallexample | |
1645 (setq trees '((pine . cones) (oak . acorns) (maple . seeds))) | |
1646 @result{} ((pine . cones) (oak . acorns) (maple . seeds)) | |
1647 (assq 'pine trees) | |
1648 @result{} (pine . cones) | |
1649 @end smallexample | |
1650 | |
1651 On the other hand, @code{assq} is not usually useful in alists where the | |
1652 keys may not be symbols: | |
1653 | |
1654 @smallexample | |
1655 (setq leaves | |
1656 '(("simple leaves" . oak) | |
1657 ("compound leaves" . horsechestnut))) | |
1658 | |
1659 (assq "simple leaves" leaves) | |
1660 @result{} nil | |
1661 (assoc "simple leaves" leaves) | |
1662 @result{} ("simple leaves" . oak) | |
1663 @end smallexample | |
1664 @end defun | |
1665 | |
1666 @defun rassq value alist | |
1667 This function returns the first association with value @var{value} in | |
1668 @var{alist}. It returns @code{nil} if no association in @var{alist} has | |
1669 a @sc{cdr} @code{eq} to @var{value}. | |
1670 | |
1671 @code{rassq} is like @code{assq} except that it compares the @sc{cdr} of | |
1672 each @var{alist} association instead of the @sc{car}. You can think of | |
71957
61cb5aae3bc3
Put period and comma inside quotes.
Richard M. Stallman <rms@gnu.org>
parents:
71922
diff
changeset
|
1673 this as ``reverse @code{assq},'' finding the key for a given value. |
6558 | 1674 |
1675 For example: | |
1676 | |
1677 @smallexample | |
1678 (setq trees '((pine . cones) (oak . acorns) (maple . seeds))) | |
1679 | |
1680 (rassq 'acorns trees) | |
1681 @result{} (oak . acorns) | |
1682 (rassq 'spores trees) | |
1683 @result{} nil | |
1684 @end smallexample | |
1685 | |
71922 | 1686 @code{rassq} cannot search for a value stored in the @sc{car} |
6558 | 1687 of the @sc{cdr} of an element: |
1688 | |
1689 @smallexample | |
1690 (setq colors '((rose red) (lily white) (buttercup yellow))) | |
1691 | |
1692 (rassq 'white colors) | |
1693 @result{} nil | |
1694 @end smallexample | |
1695 | |
1696 In this case, the @sc{cdr} of the association @code{(lily white)} is not | |
1697 the symbol @code{white}, but rather the list @code{(white)}. This | |
1698 becomes clearer if the association is written in dotted pair notation: | |
1699 | |
1700 @smallexample | |
1701 (lily white) @equiv{} (lily . (white)) | |
1702 @end smallexample | |
1703 @end defun | |
1704 | |
38786 | 1705 @defun assoc-default key alist &optional test default |
22961
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1706 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
|
1707 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
|
1708 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
|
1709 @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
|
1710 @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
|
1711 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
|
1712 regular expressions (@pxref{Regexp Search}). If @var{test} is omitted |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1713 or @code{nil}, @code{equal} is used for comparison. |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1714 |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1715 If an alist element matches @var{key} by this criterion, |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1716 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
|
1717 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
|
1718 Otherwise, the return value is @var{default}. |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1719 |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1720 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
|
1721 @code{nil}. |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1722 @end defun |
8159553e2468
Describe assoc-default.
Richard M. Stallman <rms@gnu.org>
parents:
22274
diff
changeset
|
1723 |
6558 | 1724 @defun copy-alist alist |
1725 @cindex copying alists | |
1726 This function returns a two-level deep copy of @var{alist}: it creates a | |
1727 new copy of each association, so that you can alter the associations of | |
1728 the new alist without changing the old one. | |
1729 | |
1730 @smallexample | |
1731 @group | |
1732 (setq needles-per-cluster | |
1733 '((2 . ("Austrian Pine" "Red Pine")) | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1734 (3 . ("Pitch Pine")) |
7734 | 1735 @end group |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1736 (5 . ("White Pine")))) |
6558 | 1737 @result{} |
1738 ((2 "Austrian Pine" "Red Pine") | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1739 (3 "Pitch Pine") |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1740 (5 "White Pine")) |
6558 | 1741 |
1742 (setq copy (copy-alist needles-per-cluster)) | |
1743 @result{} | |
1744 ((2 "Austrian Pine" "Red Pine") | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1745 (3 "Pitch Pine") |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1746 (5 "White Pine")) |
6558 | 1747 |
1748 (eq needles-per-cluster copy) | |
1749 @result{} nil | |
1750 (equal needles-per-cluster copy) | |
1751 @result{} t | |
1752 (eq (car needles-per-cluster) (car copy)) | |
1753 @result{} nil | |
1754 (cdr (car (cdr needles-per-cluster))) | |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1755 @result{} ("Pitch Pine") |
7734 | 1756 @group |
6558 | 1757 (eq (cdr (car (cdr needles-per-cluster))) |
1758 (cdr (car (cdr copy)))) | |
1759 @result{} t | |
1760 @end group | |
7337
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7118
diff
changeset
|
1761 @end smallexample |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1762 |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1763 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
|
1764 the associations of one copy without affecting the other: |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1765 |
7337
cd57cd335fff
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
7118
diff
changeset
|
1766 @smallexample |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1767 @group |
11137 | 1768 (setcdr (assq 3 copy) '("Martian Vacuum Pine")) |
7118
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1769 (cdr (assq 3 needles-per-cluster)) |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1770 @result{} ("Pitch Pine") |
08d61ef58d13
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1771 @end group |
6558 | 1772 @end smallexample |
1773 @end defun | |
1774 | |
36872
da90c393ed4e
assq-delete-all <- assoc-delete-all
Dave Love <fx@gnu.org>
parents:
35090
diff
changeset
|
1775 @defun assq-delete-all key alist |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1776 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
|
1777 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
|
1778 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
|
1779 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
|
1780 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
|
1781 than looking at the saved value of @var{alist}. |
6558 | 1782 |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1783 @example |
52694
3c9835a0d5b4
(Association Lists): Clarify `assq-delete-all'.
Richard M. Stallman <rms@gnu.org>
parents:
52484
diff
changeset
|
1784 (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
|
1785 @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
|
1786 (assq-delete-all 'foo alist) |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1787 @result{} ((bar 2) (lose 4)) |
52694
3c9835a0d5b4
(Association Lists): Clarify `assq-delete-all'.
Richard M. Stallman <rms@gnu.org>
parents:
52484
diff
changeset
|
1788 alist |
3c9835a0d5b4
(Association Lists): Clarify `assq-delete-all'.
Richard M. Stallman <rms@gnu.org>
parents:
52484
diff
changeset
|
1789 @result{} ((foo 1) (bar 2) (lose 4)) |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1790 @end example |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
24951
diff
changeset
|
1791 @end defun |
52401 | 1792 |
61718
beeb90a3315c
(Association Lists): Document rassq-delete-all.
Lute Kamstra <lute@gnu.org>
parents:
60448
diff
changeset
|
1793 @defun rassq-delete-all value alist |
beeb90a3315c
(Association Lists): Document rassq-delete-all.
Lute Kamstra <lute@gnu.org>
parents:
60448
diff
changeset
|
1794 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
|
1795 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
|
1796 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
|
1797 @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
|
1798 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
|
1799 @sc{car}. |
beeb90a3315c
(Association Lists): Document rassq-delete-all.
Lute Kamstra <lute@gnu.org>
parents:
60448
diff
changeset
|
1800 @end defun |
beeb90a3315c
(Association Lists): Document rassq-delete-all.
Lute Kamstra <lute@gnu.org>
parents:
60448
diff
changeset
|
1801 |
63541 | 1802 @node Rings |
1803 @section Managing a Fixed-Size Ring of Objects | |
1804 | |
1805 @cindex ring data structure | |
1806 This section describes functions for operating on rings. A | |
1807 @dfn{ring} is a fixed-size data structure that supports insertion, | |
1808 deletion, rotation, and modulo-indexed reference and traversal. | |
1809 | |
1810 @defun make-ring size | |
1811 This returns a new ring capable of holding @var{size} objects. | |
1812 @var{size} should be an integer. | |
1813 @end defun | |
1814 | |
1815 @defun ring-p object | |
63590
ffe64a60452e
(Rings): Various minor clarifications and corrections.
Luc Teirlinck <teirllm@auburn.edu>
parents:
63541
diff
changeset
|
1816 This returns @code{t} if @var{object} is a ring, @code{nil} otherwise. |
63541 | 1817 @end defun |
1818 | |
1819 @defun ring-size ring | |
1820 This returns the maximum capacity of the @var{ring}. | |
1821 @end defun | |
1822 | |
1823 @defun ring-length ring | |
1824 This returns the number of objects that @var{ring} currently contains. | |
1825 The value will never exceed that returned by @code{ring-size}. | |
1826 @end defun | |
1827 | |
1828 @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
|
1829 This returns a list of the objects in @var{ring}, in order, newest first. |
63541 | 1830 @end defun |
1831 | |
1832 @defun ring-copy ring | |
1833 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
|
1834 The new ring contains the same (@code{eq}) objects as @var{ring}. |
63541 | 1835 @end defun |
1836 | |
1837 @defun ring-empty-p ring | |
63590
ffe64a60452e
(Rings): Various minor clarifications and corrections.
Luc Teirlinck <teirllm@auburn.edu>
parents:
63541
diff
changeset
|
1838 This returns @code{t} if @var{ring} is empty, @code{nil} otherwise. |
63541 | 1839 @end defun |
1840 | |
63590
ffe64a60452e
(Rings): Various minor clarifications and corrections.
Luc Teirlinck <teirllm@auburn.edu>
parents:
63541
diff
changeset
|
1841 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
|
1842 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
|
1843 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
|
1844 to the next-oldest, and so forth. |
63541 | 1845 |
1846 @defun ring-ref ring index | |
1847 This returns the object in @var{ring} found at index @var{index}. | |
1848 @var{index} may be negative or greater than the ring length. If | |
1849 @var{ring} is empty, @code{ring-ref} signals an error. | |
1850 @end defun | |
1851 | |
1852 @defun ring-insert ring object | |
1853 This inserts @var{object} into @var{ring}, making it the newest | |
1854 element, and returns @var{object}. | |
1855 | |
1856 If the ring is full, insertion removes the oldest element to | |
1857 make room for the new element. | |
1858 @end defun | |
1859 | |
1860 @defun ring-remove ring &optional index | |
1861 Remove an object from @var{ring}, and return that object. The | |
1862 argument @var{index} specifies which item to remove; if it is | |
1863 @code{nil}, that means to remove the oldest item. If @var{ring} is | |
1864 empty, @code{ring-remove} signals an error. | |
1865 @end defun | |
1866 | |
1867 @defun ring-insert-at-beginning ring object | |
1868 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
|
1869 element. The return value is not significant. |
63541 | 1870 |
1871 If the ring is full, this function removes the newest element to make | |
1872 room for the inserted element. | |
1873 @end defun | |
1874 | |
1875 @cindex fifo data structure | |
1876 If you are careful not to exceed the ring size, you can | |
1877 use the ring as a first-in-first-out queue. For example: | |
1878 | |
1879 @lisp | |
1880 (let ((fifo (make-ring 5))) | |
1881 (mapc (lambda (obj) (ring-insert fifo obj)) | |
1882 '(0 one "two")) | |
1883 (list (ring-remove fifo) t | |
1884 (ring-remove fifo) t | |
1885 (ring-remove fifo))) | |
1886 @result{} (0 t one t "two") | |
1887 @end lisp | |
1888 | |
52401 | 1889 @ignore |
1890 arch-tag: 31fb8a4e-4aa8-4a74-a206-aa00451394d4 | |
1891 @end ignore |