Misc fixes, and use lexical-binding in more files.
[bpt/emacs.git] / lisp / emacs-lisp / cl-loaddefs.el
CommitLineData
d1b8746d
SM
1;;; cl-loaddefs.el --- automatically extracted autoloads
2;;
3;;; Code:
4
5\f
6;;;### (autoloads (cl-prettyexpand cl-macroexpand-all cl-remprop
7;;;;;; cl-do-remf cl-set-getf getf get* tailp list-length nreconc
8;;;;;; revappend concatenate subseq cl-float-limits random-state-p
9;;;;;; make-random-state random* signum rem* mod* round* truncate*
10;;;;;; ceiling* floor* isqrt lcm gcd cl-progv-before cl-set-frame-visible-p
11;;;;;; cl-map-overlays cl-map-intervals cl-map-keymap-recursively
12;;;;;; notevery notany every some mapcon mapcan mapl maplist map
876c194c 13;;;;;; cl-mapcar-many equalp coerce) "cl-extra" "cl-extra.el" "26339d9571f9485bf34fa6d2ae38fc84")
d1b8746d
SM
14;;; Generated autoloads from cl-extra.el
15
5c4133cb 16(autoload 'coerce "cl-extra" "\
d1b8746d
SM
17Coerce OBJECT to type TYPE.
18TYPE is a Common Lisp type specifier.
19
20\(fn OBJECT TYPE)" nil nil)
21
5c4133cb 22(autoload 'equalp "cl-extra" "\
d1b8746d
SM
23Return t if two Lisp objects have similar structures and contents.
24This is like `equal', except that it accepts numerically equal
25numbers of different types (float vs. integer), and also compares
26strings case-insensitively.
27
28\(fn X Y)" nil nil)
29
5c4133cb 30(autoload 'cl-mapcar-many "cl-extra" "\
d1b8746d
SM
31Not documented
32
33\(fn CL-FUNC CL-SEQS)" nil nil)
34
5c4133cb 35(autoload 'map "cl-extra" "\
d1b8746d
SM
36Map a FUNCTION across one or more SEQUENCEs, returning a sequence.
37TYPE is the sequence type to return.
38
39\(fn TYPE FUNCTION SEQUENCE...)" nil nil)
40
5c4133cb 41(autoload 'maplist "cl-extra" "\
d1b8746d
SM
42Map FUNCTION to each sublist of LIST or LISTs.
43Like `mapcar', except applies to lists and their cdr's rather than to
44the elements themselves.
45
46\(fn FUNCTION LIST...)" nil nil)
47
5c4133cb 48(autoload 'mapl "cl-extra" "\
d1b8746d
SM
49Like `maplist', but does not accumulate values returned by the function.
50
51\(fn FUNCTION LIST...)" nil nil)
52
5c4133cb 53(autoload 'mapcan "cl-extra" "\
d1b8746d
SM
54Like `mapcar', but nconc's together the values returned by the function.
55
56\(fn FUNCTION SEQUENCE...)" nil nil)
57
5c4133cb 58(autoload 'mapcon "cl-extra" "\
d1b8746d
SM
59Like `maplist', but nconc's together the values returned by the function.
60
61\(fn FUNCTION LIST...)" nil nil)
62
5c4133cb 63(autoload 'some "cl-extra" "\
d1b8746d
SM
64Return true if PREDICATE is true of any element of SEQ or SEQs.
65If so, return the true (non-nil) value returned by PREDICATE.
66
67\(fn PREDICATE SEQ...)" nil nil)
68
5c4133cb 69(autoload 'every "cl-extra" "\
d1b8746d
SM
70Return true if PREDICATE is true of every element of SEQ or SEQs.
71
72\(fn PREDICATE SEQ...)" nil nil)
73
5c4133cb 74(autoload 'notany "cl-extra" "\
d1b8746d
SM
75Return true if PREDICATE is false of every element of SEQ or SEQs.
76
77\(fn PREDICATE SEQ...)" nil nil)
78
5c4133cb 79(autoload 'notevery "cl-extra" "\
d1b8746d
SM
80Return true if PREDICATE is false of some element of SEQ or SEQs.
81
82\(fn PREDICATE SEQ...)" nil nil)
83
5c4133cb 84(defalias 'cl-map-keymap 'map-keymap)
d1b8746d 85
5c4133cb 86(autoload 'cl-map-keymap-recursively "cl-extra" "\
d1b8746d
SM
87Not documented
88
89\(fn CL-FUNC-REC CL-MAP &optional CL-BASE)" nil nil)
90
5c4133cb 91(autoload 'cl-map-intervals "cl-extra" "\
d1b8746d
SM
92Not documented
93
94\(fn CL-FUNC &optional CL-WHAT CL-PROP CL-START CL-END)" nil nil)
95
5c4133cb 96(autoload 'cl-map-overlays "cl-extra" "\
d1b8746d
SM
97Not documented
98
99\(fn CL-FUNC &optional CL-BUFFER CL-START CL-END CL-ARG)" nil nil)
100
5c4133cb 101(autoload 'cl-set-frame-visible-p "cl-extra" "\
d1b8746d
SM
102Not documented
103
104\(fn FRAME VAL)" nil nil)
105
5c4133cb 106(autoload 'cl-progv-before "cl-extra" "\
d1b8746d
SM
107Not documented
108
109\(fn SYMS VALUES)" nil nil)
110
5c4133cb 111(autoload 'gcd "cl-extra" "\
d1b8746d
SM
112Return the greatest common divisor of the arguments.
113
114\(fn &rest ARGS)" nil nil)
115
5c4133cb 116(autoload 'lcm "cl-extra" "\
d1b8746d
SM
117Return the least common multiple of the arguments.
118
119\(fn &rest ARGS)" nil nil)
120
5c4133cb 121(autoload 'isqrt "cl-extra" "\
d1b8746d
SM
122Return the integer square root of the argument.
123
124\(fn X)" nil nil)
125
5c4133cb 126(autoload 'floor* "cl-extra" "\
d1b8746d
SM
127Return a list of the floor of X and the fractional part of X.
128With two arguments, return floor and remainder of their quotient.
129
130\(fn X &optional Y)" nil nil)
131
5c4133cb 132(autoload 'ceiling* "cl-extra" "\
d1b8746d
SM
133Return a list of the ceiling of X and the fractional part of X.
134With two arguments, return ceiling and remainder of their quotient.
135
136\(fn X &optional Y)" nil nil)
137
5c4133cb 138(autoload 'truncate* "cl-extra" "\
d1b8746d
SM
139Return a list of the integer part of X and the fractional part of X.
140With two arguments, return truncation and remainder of their quotient.
141
142\(fn X &optional Y)" nil nil)
143
5c4133cb 144(autoload 'round* "cl-extra" "\
d1b8746d
SM
145Return a list of X rounded to the nearest integer and the remainder.
146With two arguments, return rounding and remainder of their quotient.
147
148\(fn X &optional Y)" nil nil)
149
5c4133cb 150(autoload 'mod* "cl-extra" "\
d1b8746d
SM
151The remainder of X divided by Y, with the same sign as Y.
152
153\(fn X Y)" nil nil)
154
5c4133cb 155(autoload 'rem* "cl-extra" "\
d1b8746d
SM
156The remainder of X divided by Y, with the same sign as X.
157
158\(fn X Y)" nil nil)
159
5c4133cb 160(autoload 'signum "cl-extra" "\
d1b8746d
SM
161Return 1 if X is positive, -1 if negative, 0 if zero.
162
163\(fn X)" nil nil)
164
5c4133cb 165(autoload 'random* "cl-extra" "\
d1b8746d
SM
166Return a random nonnegative number less than LIM, an integer or float.
167Optional second arg STATE is a random-state object.
168
169\(fn LIM &optional STATE)" nil nil)
170
5c4133cb 171(autoload 'make-random-state "cl-extra" "\
d1b8746d
SM
172Return a copy of random-state STATE, or of `*random-state*' if omitted.
173If STATE is t, return a new state object seeded from the time of day.
174
175\(fn &optional STATE)" nil nil)
176
5c4133cb 177(autoload 'random-state-p "cl-extra" "\
d1b8746d
SM
178Return t if OBJECT is a random-state object.
179
180\(fn OBJECT)" nil nil)
181
5c4133cb 182(autoload 'cl-float-limits "cl-extra" "\
d1b8746d
SM
183Not documented
184
185\(fn)" nil nil)
186
5c4133cb 187(autoload 'subseq "cl-extra" "\
d1b8746d
SM
188Return the subsequence of SEQ from START to END.
189If END is omitted, it defaults to the length of the sequence.
190If START or END is negative, it counts from the end.
191
192\(fn SEQ START &optional END)" nil nil)
193
5c4133cb 194(autoload 'concatenate "cl-extra" "\
d1b8746d
SM
195Concatenate, into a sequence of type TYPE, the argument SEQUENCEs.
196
197\(fn TYPE SEQUENCE...)" nil nil)
198
5c4133cb 199(autoload 'revappend "cl-extra" "\
d1b8746d
SM
200Equivalent to (append (reverse X) Y).
201
202\(fn X Y)" nil nil)
203
5c4133cb 204(autoload 'nreconc "cl-extra" "\
d1b8746d
SM
205Equivalent to (nconc (nreverse X) Y).
206
207\(fn X Y)" nil nil)
208
5c4133cb 209(autoload 'list-length "cl-extra" "\
d1b8746d
SM
210Return the length of list X. Return nil if list is circular.
211
212\(fn X)" nil nil)
213
5c4133cb 214(autoload 'tailp "cl-extra" "\
d1b8746d
SM
215Return true if SUBLIST is a tail of LIST.
216
217\(fn SUBLIST LIST)" nil nil)
218
5c4133cb 219(autoload 'get* "cl-extra" "\
d1b8746d
SM
220Return the value of SYMBOL's PROPNAME property, or DEFAULT if none.
221
222\(fn SYMBOL PROPNAME &optional DEFAULT)" nil nil)
223
5c4133cb 224(autoload 'getf "cl-extra" "\
d1b8746d
SM
225Search PROPLIST for property PROPNAME; return its value or DEFAULT.
226PROPLIST is a list of the sort returned by `symbol-plist'.
227
228\(fn PROPLIST PROPNAME &optional DEFAULT)" nil nil)
229
5c4133cb 230(autoload 'cl-set-getf "cl-extra" "\
d1b8746d
SM
231Not documented
232
233\(fn PLIST TAG VAL)" nil nil)
234
5c4133cb 235(autoload 'cl-do-remf "cl-extra" "\
d1b8746d
SM
236Not documented
237
238\(fn PLIST TAG)" nil nil)
239
5c4133cb 240(autoload 'cl-remprop "cl-extra" "\
d1b8746d
SM
241Remove from SYMBOL's plist the property PROPNAME and its value.
242
243\(fn SYMBOL PROPNAME)" nil nil)
244
5c4133cb 245(defalias 'remprop 'cl-remprop)
d1b8746d 246
5c4133cb 247(defalias 'cl-gethash 'gethash)
d1b8746d 248
5c4133cb 249(defalias 'cl-puthash 'puthash)
d1b8746d 250
5c4133cb 251(defalias 'cl-remhash 'remhash)
d1b8746d 252
5c4133cb 253(defalias 'cl-clrhash 'clrhash)
d1b8746d 254
5c4133cb 255(defalias 'cl-maphash 'maphash)
d1b8746d 256
5c4133cb 257(defalias 'cl-make-hash-table 'make-hash-table)
d1b8746d 258
5c4133cb 259(defalias 'cl-hash-table-p 'hash-table-p)
d1b8746d 260
5c4133cb 261(defalias 'cl-hash-table-count 'hash-table-count)
d1b8746d 262
5c4133cb 263(autoload 'cl-macroexpand-all "cl-extra" "\
d1b8746d
SM
264Expand all macro calls through a Lisp FORM.
265This also does some trivial optimizations to make the form prettier.
266
267\(fn FORM &optional ENV)" nil nil)
268
5c4133cb 269(autoload 'cl-prettyexpand "cl-extra" "\
d1b8746d
SM
270Not documented
271
272\(fn FORM &optional FULL)" nil nil)
273
274;;;***
275\f
eb123b12
GM
276;;;### (autoloads (defsubst* compiler-macroexpand define-compiler-macro
277;;;;;; assert check-type typep deftype cl-struct-setf-expander defstruct
c93d41ba
CY
278;;;;;; define-modify-macro callf2 callf letf* letf rotatef shiftf
279;;;;;; remf cl-do-pop psetf setf get-setf-method defsetf define-setf-method
ba83908c
SM
280;;;;;; declare the locally multiple-value-setq multiple-value-bind
281;;;;;; lexical-let* lexical-let symbol-macrolet macrolet labels
282;;;;;; flet progv psetq do-all-symbols do-symbols dotimes dolist
283;;;;;; do* do loop return-from return block etypecase typecase ecase
284;;;;;; case load-time-value eval-when destructuring-bind function*
285;;;;;; defmacro* defun* gentemp gensym) "cl-macs" "cl-macs.el" "864a28dc0495ad87d39637a965387526")
d1b8746d
SM
286;;; Generated autoloads from cl-macs.el
287
5e4599b8 288(autoload 'gensym "cl-macs" "\
d1b8746d
SM
289Generate a new uninterned symbol.
290The name is made by appending a number to PREFIX, default \"G\".
291
292\(fn &optional PREFIX)" nil nil)
293
5e4599b8 294(autoload 'gentemp "cl-macs" "\
d1b8746d
SM
295Generate a new interned symbol with a unique name.
296The name is made by appending a number to PREFIX, default \"G\".
297
298\(fn &optional PREFIX)" nil nil)
299
5e4599b8 300(autoload 'defun* "cl-macs" "\
d1b8746d
SM
301Define NAME as a function.
302Like normal `defun', except ARGLIST allows full Common Lisp conventions,
303and BODY is implicitly surrounded by (block NAME ...).
304
305\(fn NAME ARGLIST [DOCSTRING] BODY...)" nil (quote macro))
306
5e4599b8 307(autoload 'defmacro* "cl-macs" "\
d1b8746d
SM
308Define NAME as a macro.
309Like normal `defmacro', except ARGLIST allows full Common Lisp conventions,
310and BODY is implicitly surrounded by (block NAME ...).
311
312\(fn NAME ARGLIST [DOCSTRING] BODY...)" nil (quote macro))
313
5e4599b8 314(autoload 'function* "cl-macs" "\
d1b8746d
SM
315Introduce a function.
316Like normal `function', except that if argument is a lambda form,
317its argument list allows full Common Lisp conventions.
318
319\(fn FUNC)" nil (quote macro))
320
5e4599b8 321(autoload 'destructuring-bind "cl-macs" "\
0d6459df 322
d1b8746d
SM
323
324\(fn ARGS EXPR &rest BODY)" nil (quote macro))
325
5e4599b8 326(autoload 'eval-when "cl-macs" "\
d1b8746d
SM
327Control when BODY is evaluated.
328If `compile' is in WHEN, BODY is evaluated when compiled at top-level.
329If `load' is in WHEN, BODY is evaluated when loaded after top-level compile.
330If `eval' is in WHEN, BODY is evaluated when interpreted or at non-top-level.
331
332\(fn (WHEN...) BODY...)" nil (quote macro))
333
5e4599b8 334(autoload 'load-time-value "cl-macs" "\
d1b8746d
SM
335Like `progn', but evaluates the body at load time.
336The result of the body appears to the compiler as a quoted constant.
337
338\(fn FORM &optional READ-ONLY)" nil (quote macro))
339
5e4599b8 340(autoload 'case "cl-macs" "\
d1b8746d
SM
341Eval EXPR and choose among clauses on that value.
342Each clause looks like (KEYLIST BODY...). EXPR is evaluated and compared
343against each key in each KEYLIST; the corresponding BODY is evaluated.
344If no clause succeeds, case returns nil. A single atom may be used in
345place of a KEYLIST of one atom. A KEYLIST of t or `otherwise' is
346allowed only in the final clause, and matches if no other keys match.
347Key values are compared by `eql'.
348
349\(fn EXPR (KEYLIST BODY...)...)" nil (quote macro))
350
5e4599b8 351(autoload 'ecase "cl-macs" "\
d1b8746d
SM
352Like `case', but error if no case fits.
353`otherwise'-clauses are not allowed.
354
355\(fn EXPR (KEYLIST BODY...)...)" nil (quote macro))
356
5e4599b8 357(autoload 'typecase "cl-macs" "\
d1b8746d
SM
358Evals EXPR, chooses among clauses on that value.
359Each clause looks like (TYPE BODY...). EXPR is evaluated and, if it
360satisfies TYPE, the corresponding BODY is evaluated. If no clause succeeds,
361typecase returns nil. A TYPE of t or `otherwise' is allowed only in the
362final clause, and matches if no other keys match.
363
364\(fn EXPR (TYPE BODY...)...)" nil (quote macro))
365
5e4599b8 366(autoload 'etypecase "cl-macs" "\
d1b8746d
SM
367Like `typecase', but error if no case fits.
368`otherwise'-clauses are not allowed.
369
370\(fn EXPR (TYPE BODY...)...)" nil (quote macro))
371
5e4599b8 372(autoload 'block "cl-macs" "\
d1b8746d
SM
373Define a lexically-scoped block named NAME.
374NAME may be any symbol. Code inside the BODY forms can call `return-from'
375to jump prematurely out of the block. This differs from `catch' and `throw'
376in two respects: First, the NAME is an unevaluated symbol rather than a
377quoted symbol or other form; and second, NAME is lexically rather than
378dynamically scoped: Only references to it within BODY will work. These
379references may appear inside macro expansions, but not inside functions
380called from BODY.
381
382\(fn NAME &rest BODY)" nil (quote macro))
383
5e4599b8 384(autoload 'return "cl-macs" "\
d1b8746d
SM
385Return from the block named nil.
386This is equivalent to `(return-from nil RESULT)'.
387
388\(fn &optional RESULT)" nil (quote macro))
389
5e4599b8 390(autoload 'return-from "cl-macs" "\
d1b8746d 391Return from the block named NAME.
50c822bd 392This jumps out to the innermost enclosing `(block NAME ...)' form,
d1b8746d
SM
393returning RESULT from that form (or nil if RESULT is omitted).
394This is compatible with Common Lisp, but note that `defun' and
395`defmacro' do not create implicit blocks as they do in Common Lisp.
396
397\(fn NAME &optional RESULT)" nil (quote macro))
398
5e4599b8 399(autoload 'loop "cl-macs" "\
d1b8746d
SM
400The Common Lisp `loop' macro.
401Valid clauses are:
402 for VAR from/upfrom/downfrom NUM to/upto/downto/above/below NUM by NUM,
403 for VAR in LIST by FUNC, for VAR on LIST by FUNC, for VAR = INIT then EXPR,
404 for VAR across ARRAY, repeat NUM, with VAR = INIT, while COND, until COND,
405 always COND, never COND, thereis COND, collect EXPR into VAR,
406 append EXPR into VAR, nconc EXPR into VAR, sum EXPR into VAR,
407 count EXPR into VAR, maximize EXPR into VAR, minimize EXPR into VAR,
408 if COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
409 unless COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
410 do EXPRS..., initially EXPRS..., finally EXPRS..., return EXPR,
411 finally return EXPR, named NAME.
412
413\(fn CLAUSE...)" nil (quote macro))
414
5e4599b8 415(autoload 'do "cl-macs" "\
d1b8746d
SM
416The Common Lisp `do' loop.
417
418\(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" nil (quote macro))
419
5e4599b8 420(autoload 'do* "cl-macs" "\
d1b8746d
SM
421The Common Lisp `do*' loop.
422
423\(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" nil (quote macro))
424
5e4599b8 425(autoload 'dolist "cl-macs" "\
d1b8746d
SM
426Loop over a list.
427Evaluate BODY with VAR bound to each `car' from LIST, in turn.
428Then evaluate RESULT to get return value, default nil.
429
430\(fn (VAR LIST [RESULT]) BODY...)" nil (quote macro))
431
5e4599b8 432(autoload 'dotimes "cl-macs" "\
d1b8746d
SM
433Loop a certain number of times.
434Evaluate BODY with VAR bound to successive integers from 0, inclusive,
435to COUNT, exclusive. Then evaluate RESULT to get return value, default
436nil.
437
438\(fn (VAR COUNT [RESULT]) BODY...)" nil (quote macro))
439
5e4599b8 440(autoload 'do-symbols "cl-macs" "\
d1b8746d
SM
441Loop over all symbols.
442Evaluate BODY with VAR bound to each interned symbol, or to each symbol
443from OBARRAY.
444
445\(fn (VAR [OBARRAY [RESULT]]) BODY...)" nil (quote macro))
446
5e4599b8 447(autoload 'do-all-symbols "cl-macs" "\
0d6459df 448
d1b8746d
SM
449
450\(fn SPEC &rest BODY)" nil (quote macro))
451
5e4599b8 452(autoload 'psetq "cl-macs" "\
d1b8746d
SM
453Set SYMs to the values VALs in parallel.
454This is like `setq', except that all VAL forms are evaluated (in order)
455before assigning any symbols SYM to the corresponding values.
456
457\(fn SYM VAL SYM VAL ...)" nil (quote macro))
458
5e4599b8 459(autoload 'progv "cl-macs" "\
d1b8746d
SM
460Bind SYMBOLS to VALUES dynamically in BODY.
461The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists.
462Each symbol in the first list is bound to the corresponding value in the
463second list (or made unbound if VALUES is shorter than SYMBOLS); then the
464BODY forms are executed and their result is returned. This is much like
465a `let' form, except that the list of symbols can be computed at run-time.
466
467\(fn SYMBOLS VALUES &rest BODY)" nil (quote macro))
468
5e4599b8 469(autoload 'flet "cl-macs" "\
d1b8746d
SM
470Make temporary function definitions.
471This is an analogue of `let' that operates on the function cell of FUNC
472rather than its value cell. The FORMs are evaluated with the specified
473function definitions in place, then the definitions are undone (the FUNCs
474go back to their previous definitions, or lack thereof).
475
476\(fn ((FUNC ARGLIST BODY...) ...) FORM...)" nil (quote macro))
477
5e4599b8 478(autoload 'labels "cl-macs" "\
d1b8746d
SM
479Make temporary function bindings.
480This is like `flet', except the bindings are lexical instead of dynamic.
481Unlike `flet', this macro is fully compliant with the Common Lisp standard.
482
483\(fn ((FUNC ARGLIST BODY...) ...) FORM...)" nil (quote macro))
484
5e4599b8 485(autoload 'macrolet "cl-macs" "\
d1b8746d
SM
486Make temporary macro definitions.
487This is like `flet', but for macros instead of functions.
488
489\(fn ((NAME ARGLIST BODY...) ...) FORM...)" nil (quote macro))
490
5e4599b8 491(autoload 'symbol-macrolet "cl-macs" "\
d1b8746d
SM
492Make symbol macro definitions.
493Within the body FORMs, references to the variable NAME will be replaced
494by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...).
495
496\(fn ((NAME EXPANSION) ...) FORM...)" nil (quote macro))
497
5e4599b8 498(autoload 'lexical-let "cl-macs" "\
d1b8746d
SM
499Like `let', but lexically scoped.
500The main visible difference is that lambdas inside BODY will create
501lexical closures as in Common Lisp.
502
503\(fn VARLIST BODY)" nil (quote macro))
504
5e4599b8 505(autoload 'lexical-let* "cl-macs" "\
d1b8746d 506Like `let*', but lexically scoped.
ae232225 507The main visible difference is that lambdas inside BODY, and in
f6132e5a 508successive bindings within VARLIST, will create lexical closures
ae232225
JB
509as in Common Lisp. This is similar to the behavior of `let*' in
510Common Lisp.
d1b8746d
SM
511
512\(fn VARLIST BODY)" nil (quote macro))
513
5e4599b8 514(autoload 'multiple-value-bind "cl-macs" "\
d1b8746d
SM
515Collect multiple return values.
516FORM must return a list; the BODY is then executed with the first N elements
517of this list bound (`let'-style) to each of the symbols SYM in turn. This
518is analogous to the Common Lisp `multiple-value-bind' macro, using lists to
519simulate true multiple return values. For compatibility, (values A B C) is
520a synonym for (list A B C).
521
522\(fn (SYM...) FORM BODY)" nil (quote macro))
523
5e4599b8 524(autoload 'multiple-value-setq "cl-macs" "\
d1b8746d
SM
525Collect multiple return values.
526FORM must return a list; the first N elements of this list are stored in
527each of the symbols SYM in turn. This is analogous to the Common Lisp
528`multiple-value-setq' macro, using lists to simulate true multiple return
529values. For compatibility, (values A B C) is a synonym for (list A B C).
530
531\(fn (SYM...) FORM)" nil (quote macro))
532
5e4599b8 533(autoload 'locally "cl-macs" "\
0d6459df 534
d1b8746d
SM
535
536\(fn &rest BODY)" nil (quote macro))
537
ba83908c
SM
538(autoload 'the "cl-macs" "\
539
540
541\(fn TYPE FORM)" nil (quote macro))
542
5e4599b8 543(autoload 'declare "cl-macs" "\
0d6459df 544
d1b8746d
SM
545
546\(fn &rest SPECS)" nil (quote macro))
547
5e4599b8 548(autoload 'define-setf-method "cl-macs" "\
d1b8746d
SM
549Define a `setf' method.
550This method shows how to handle `setf's to places of the form (NAME ARGS...).
551The argument forms ARGS are bound according to ARGLIST, as if NAME were
552going to be expanded as a macro, then the BODY forms are executed and must
553return a list of five elements: a temporary-variables list, a value-forms
554list, a store-variables list (of length one), a store-form, and an access-
555form. See `defsetf' for a simpler way to define most setf-methods.
556
557\(fn NAME ARGLIST BODY...)" nil (quote macro))
558
5e4599b8 559(autoload 'defsetf "cl-macs" "\
a2fb8c1e 560Define a `setf' method.
d1b8746d
SM
561This macro is an easy-to-use substitute for `define-setf-method' that works
562well for simple place forms. In the simple `defsetf' form, `setf's of
563the form (setf (NAME ARGS...) VAL) are transformed to function or macro
564calls of the form (FUNC ARGS... VAL). Example:
565
566 (defsetf aref aset)
567
568Alternate form: (defsetf NAME ARGLIST (STORE) BODY...).
569Here, the above `setf' call is expanded by binding the argument forms ARGS
570according to ARGLIST, binding the value form VAL to STORE, then executing
571BODY, which must return a Lisp form that does the necessary `setf' operation.
572Actually, ARGLIST and STORE may be bound to temporary variables which are
573introduced automatically to preserve proper execution order of the arguments.
574Example:
575
576 (defsetf nth (n x) (v) (list 'setcar (list 'nthcdr n x) v))
577
578\(fn NAME [FUNC | ARGLIST (STORE) BODY...])" nil (quote macro))
579
5e4599b8 580(autoload 'get-setf-method "cl-macs" "\
d1b8746d
SM
581Return a list of five values describing the setf-method for PLACE.
582PLACE may be any Lisp form which can appear as the PLACE argument to
583a macro like `setf' or `incf'.
584
585\(fn PLACE &optional ENV)" nil nil)
586
5e4599b8 587(autoload 'setf "cl-macs" "\
d1b8746d
SM
588Set each PLACE to the value of its VAL.
589This is a generalized version of `setq'; the PLACEs may be symbolic
590references such as (car x) or (aref x i), as well as plain symbols.
591For example, (setf (cadar x) y) is equivalent to (setcar (cdar x) y).
592The return value is the last VAL in the list.
593
594\(fn PLACE VAL PLACE VAL ...)" nil (quote macro))
595
5e4599b8 596(autoload 'psetf "cl-macs" "\
d1b8746d
SM
597Set PLACEs to the values VALs in parallel.
598This is like `setf', except that all VAL forms are evaluated (in order)
599before assigning any PLACEs to the corresponding values.
600
601\(fn PLACE VAL PLACE VAL ...)" nil (quote macro))
602
5e4599b8 603(autoload 'cl-do-pop "cl-macs" "\
0d6459df 604
d1b8746d
SM
605
606\(fn PLACE)" nil nil)
607
5e4599b8 608(autoload 'remf "cl-macs" "\
d1b8746d
SM
609Remove TAG from property list PLACE.
610PLACE may be a symbol, or any generalized variable allowed by `setf'.
611The form returns true if TAG was found and removed, nil otherwise.
612
613\(fn PLACE TAG)" nil (quote macro))
614
5e4599b8 615(autoload 'shiftf "cl-macs" "\
d1b8746d
SM
616Shift left among PLACEs.
617Example: (shiftf A B C) sets A to B, B to C, and returns the old A.
618Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
619
620\(fn PLACE... VAL)" nil (quote macro))
621
5e4599b8 622(autoload 'rotatef "cl-macs" "\
d1b8746d
SM
623Rotate left among PLACEs.
624Example: (rotatef A B C) sets A to B, B to C, and C to A. It returns nil.
625Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
626
627\(fn PLACE...)" nil (quote macro))
628
5e4599b8 629(autoload 'letf "cl-macs" "\
d1b8746d
SM
630Temporarily bind to PLACEs.
631This is the analogue of `let', but with generalized variables (in the
632sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
633VALUE, then the BODY forms are executed. On exit, either normally or
634because of a `throw' or error, the PLACEs are set back to their original
635values. Note that this macro is *not* available in Common Lisp.
636As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
637the PLACE is not modified before executing BODY.
638
639\(fn ((PLACE VALUE) ...) BODY...)" nil (quote macro))
640
5e4599b8 641(autoload 'letf* "cl-macs" "\
d1b8746d
SM
642Temporarily bind to PLACEs.
643This is the analogue of `let*', but with generalized variables (in the
644sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
645VALUE, then the BODY forms are executed. On exit, either normally or
646because of a `throw' or error, the PLACEs are set back to their original
647values. Note that this macro is *not* available in Common Lisp.
648As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
649the PLACE is not modified before executing BODY.
650
651\(fn ((PLACE VALUE) ...) BODY...)" nil (quote macro))
652
5e4599b8 653(autoload 'callf "cl-macs" "\
d1b8746d
SM
654Set PLACE to (FUNC PLACE ARGS...).
655FUNC should be an unquoted function name. PLACE may be a symbol,
656or any generalized variable allowed by `setf'.
657
658\(fn FUNC PLACE ARGS...)" nil (quote macro))
659
5e4599b8 660(autoload 'callf2 "cl-macs" "\
d1b8746d
SM
661Set PLACE to (FUNC ARG1 PLACE ARGS...).
662Like `callf', but PLACE is the second argument of FUNC, not the first.
663
664\(fn FUNC ARG1 PLACE ARGS...)" nil (quote macro))
665
5e4599b8 666(autoload 'define-modify-macro "cl-macs" "\
d1b8746d
SM
667Define a `setf'-like modify macro.
668If NAME is called, it combines its PLACE argument with the other arguments
669from ARGLIST using FUNC: (define-modify-macro incf (&optional (n 1)) +)
670
671\(fn NAME ARGLIST FUNC &optional DOC)" nil (quote macro))
672
5e4599b8 673(autoload 'defstruct "cl-macs" "\
d1b8746d 674Define a struct type.
c7dc1ac1
CY
675This macro defines a new data type called NAME that stores data
676in SLOTs. It defines a `make-NAME' constructor, a `copy-NAME'
677copier, a `NAME-p' predicate, and slot accessors named `NAME-SLOT'.
678You can use the accessors to set the corresponding slots, via `setf'.
d1b8746d 679
c7dc1ac1
CY
680NAME may instead take the form (NAME OPTIONS...), where each
681OPTION is either a single keyword or (KEYWORD VALUE).
682See Info node `(cl)Structures' for a list of valid keywords.
683
684Each SLOT may instead take the form (SLOT SLOT-OPTS...), where
685SLOT-OPTS are keyword-value pairs for that slot. Currently, only
686one keyword is supported, `:read-only'. If this has a non-nil
687value, that slot cannot be set via `setf'.
688
689\(fn NAME SLOTS...)" nil (quote macro))
d1b8746d 690
5e4599b8 691(autoload 'cl-struct-setf-expander "cl-macs" "\
0d6459df 692
d1b8746d
SM
693
694\(fn X NAME ACCESSOR PRED-FORM POS)" nil nil)
695
c93d41ba
CY
696(autoload 'deftype "cl-macs" "\
697Define NAME as a new data type.
698The type name can then be used in `typecase', `check-type', etc.
699
700\(fn NAME ARGLIST &rest BODY)" nil (quote macro))
701
5e4599b8 702(autoload 'typep "cl-macs" "\
d1b8746d
SM
703Check that OBJECT is of type TYPE.
704TYPE is a Common Lisp-style type specifier.
705
706\(fn OBJECT TYPE)" nil nil)
707
5e4599b8 708(autoload 'check-type "cl-macs" "\
d1b8746d
SM
709Verify that FORM is of type TYPE; signal an error if not.
710STRING is an optional description of the desired type.
711
712\(fn FORM TYPE &optional STRING)" nil (quote macro))
713
5e4599b8 714(autoload 'assert "cl-macs" "\
d1b8746d
SM
715Verify that FORM returns non-nil; signal an error if not.
716Second arg SHOW-ARGS means to include arguments of FORM in message.
717Other args STRING and ARGS... are arguments to be passed to `error'.
718They are not evaluated unless the assertion fails. If STRING is
719omitted, a default message listing FORM itself is used.
720
721\(fn FORM &optional SHOW-ARGS STRING &rest ARGS)" nil (quote macro))
722
5e4599b8 723(autoload 'define-compiler-macro "cl-macs" "\
d1b8746d
SM
724Define a compiler-only macro.
725This is like `defmacro', but macro expansion occurs only if the call to
726FUNC is compiled (i.e., not interpreted). Compiler macros should be used
727for optimizing the way calls to FUNC are compiled; the form returned by
728BODY should do the same thing as a call to the normal function called
729FUNC, though possibly more efficiently. Note that, like regular macros,
730compiler macros are expanded repeatedly until no further expansions are
731possible. Unlike regular macros, BODY can decide to \"punt\" and leave the
732original function call alone by declaring an initial `&whole foo' parameter
733and then returning foo.
734
735\(fn FUNC ARGS &rest BODY)" nil (quote macro))
736
5e4599b8 737(autoload 'compiler-macroexpand "cl-macs" "\
0d6459df 738
d1b8746d
SM
739
740\(fn FORM)" nil nil)
741
eb123b12
GM
742(autoload 'defsubst* "cl-macs" "\
743Define NAME as a function.
744Like `defun', except the function is automatically declared `inline',
745ARGLIST allows full Common Lisp conventions, and BODY is implicitly
746surrounded by (block NAME ...).
747
748\(fn NAME ARGLIST [DOCSTRING] BODY...)" nil (quote macro))
749
d1b8746d
SM
750;;;***
751\f
752;;;### (autoloads (tree-equal nsublis sublis nsubst-if-not nsubst-if
753;;;;;; nsubst subst-if-not subst-if subsetp nset-exclusive-or set-exclusive-or
754;;;;;; nset-difference set-difference nintersection intersection
755;;;;;; nunion union rassoc-if-not rassoc-if rassoc* assoc-if-not
756;;;;;; assoc-if assoc* cl-adjoin member-if-not member-if member*
757;;;;;; merge stable-sort sort* search mismatch count-if-not count-if
758;;;;;; count position-if-not position-if position find-if-not find-if
759;;;;;; find nsubstitute-if-not nsubstitute-if nsubstitute substitute-if-not
760;;;;;; substitute-if substitute delete-duplicates remove-duplicates
761;;;;;; delete-if-not delete-if delete* remove-if-not remove-if remove*
e730aabe 762;;;;;; replace fill reduce) "cl-seq" "cl-seq.el" "df375ddc313f0c1c262cacab5cffd3e4")
d1b8746d
SM
763;;; Generated autoloads from cl-seq.el
764
fc5e09b3 765(autoload 'reduce "cl-seq" "\
d1b8746d
SM
766Reduce two-argument FUNCTION across SEQ.
767
768Keywords supported: :start :end :from-end :initial-value :key
769
770\(fn FUNCTION SEQ [KEYWORD VALUE]...)" nil nil)
771
fc5e09b3 772(autoload 'fill "cl-seq" "\
d1b8746d
SM
773Fill the elements of SEQ with ITEM.
774
775Keywords supported: :start :end
776
777\(fn SEQ ITEM [KEYWORD VALUE]...)" nil nil)
778
fc5e09b3 779(autoload 'replace "cl-seq" "\
d1b8746d
SM
780Replace the elements of SEQ1 with the elements of SEQ2.
781SEQ1 is destructively modified, then returned.
782
783Keywords supported: :start1 :end1 :start2 :end2
784
785\(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil)
786
fc5e09b3 787(autoload 'remove* "cl-seq" "\
d1b8746d
SM
788Remove all occurrences of ITEM in SEQ.
789This is a non-destructive function; it makes a copy of SEQ if necessary
790to avoid corrupting the original SEQ.
791
792Keywords supported: :test :test-not :key :count :start :end :from-end
793
794\(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
795
fc5e09b3 796(autoload 'remove-if "cl-seq" "\
d1b8746d
SM
797Remove all items satisfying PREDICATE in SEQ.
798This is a non-destructive function; it makes a copy of SEQ if necessary
799to avoid corrupting the original SEQ.
800
801Keywords supported: :key :count :start :end :from-end
802
803\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
804
fc5e09b3 805(autoload 'remove-if-not "cl-seq" "\
d1b8746d
SM
806Remove all items not satisfying PREDICATE in SEQ.
807This is a non-destructive function; it makes a copy of SEQ if necessary
808to avoid corrupting the original SEQ.
809
810Keywords supported: :key :count :start :end :from-end
811
812\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
813
fc5e09b3 814(autoload 'delete* "cl-seq" "\
d1b8746d
SM
815Remove all occurrences of ITEM in SEQ.
816This is a destructive function; it reuses the storage of SEQ whenever possible.
817
818Keywords supported: :test :test-not :key :count :start :end :from-end
819
820\(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
821
fc5e09b3 822(autoload 'delete-if "cl-seq" "\
d1b8746d
SM
823Remove all items satisfying PREDICATE in SEQ.
824This is a destructive function; it reuses the storage of SEQ whenever possible.
825
826Keywords supported: :key :count :start :end :from-end
827
828\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
829
fc5e09b3 830(autoload 'delete-if-not "cl-seq" "\
d1b8746d
SM
831Remove all items not satisfying PREDICATE in SEQ.
832This is a destructive function; it reuses the storage of SEQ whenever possible.
833
834Keywords supported: :key :count :start :end :from-end
835
836\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
837
fc5e09b3 838(autoload 'remove-duplicates "cl-seq" "\
d1b8746d
SM
839Return a copy of SEQ with all duplicate elements removed.
840
841Keywords supported: :test :test-not :key :start :end :from-end
842
843\(fn SEQ [KEYWORD VALUE]...)" nil nil)
844
fc5e09b3 845(autoload 'delete-duplicates "cl-seq" "\
d1b8746d
SM
846Remove all duplicate elements from SEQ (destructively).
847
848Keywords supported: :test :test-not :key :start :end :from-end
849
850\(fn SEQ [KEYWORD VALUE]...)" nil nil)
851
fc5e09b3 852(autoload 'substitute "cl-seq" "\
d1b8746d
SM
853Substitute NEW for OLD in SEQ.
854This is a non-destructive function; it makes a copy of SEQ if necessary
855to avoid corrupting the original SEQ.
856
857Keywords supported: :test :test-not :key :count :start :end :from-end
858
859\(fn NEW OLD SEQ [KEYWORD VALUE]...)" nil nil)
860
fc5e09b3 861(autoload 'substitute-if "cl-seq" "\
d1b8746d
SM
862Substitute NEW for all items satisfying PREDICATE in SEQ.
863This is a non-destructive function; it makes a copy of SEQ if necessary
864to avoid corrupting the original SEQ.
865
866Keywords supported: :key :count :start :end :from-end
867
868\(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
869
fc5e09b3 870(autoload 'substitute-if-not "cl-seq" "\
d1b8746d
SM
871Substitute NEW for all items not satisfying PREDICATE in SEQ.
872This is a non-destructive function; it makes a copy of SEQ if necessary
873to avoid corrupting the original SEQ.
874
875Keywords supported: :key :count :start :end :from-end
876
877\(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
878
fc5e09b3 879(autoload 'nsubstitute "cl-seq" "\
d1b8746d
SM
880Substitute NEW for OLD in SEQ.
881This is a destructive function; it reuses the storage of SEQ whenever possible.
882
883Keywords supported: :test :test-not :key :count :start :end :from-end
884
885\(fn NEW OLD SEQ [KEYWORD VALUE]...)" nil nil)
886
fc5e09b3 887(autoload 'nsubstitute-if "cl-seq" "\
d1b8746d
SM
888Substitute NEW for all items satisfying PREDICATE in SEQ.
889This is a destructive function; it reuses the storage of SEQ whenever possible.
890
891Keywords supported: :key :count :start :end :from-end
892
893\(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
894
fc5e09b3 895(autoload 'nsubstitute-if-not "cl-seq" "\
d1b8746d
SM
896Substitute NEW for all items not satisfying PREDICATE in SEQ.
897This is a destructive function; it reuses the storage of SEQ whenever possible.
898
899Keywords supported: :key :count :start :end :from-end
900
901\(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
902
fc5e09b3 903(autoload 'find "cl-seq" "\
d1b8746d
SM
904Find the first occurrence of ITEM in SEQ.
905Return the matching ITEM, or nil if not found.
906
907Keywords supported: :test :test-not :key :start :end :from-end
908
909\(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
910
fc5e09b3 911(autoload 'find-if "cl-seq" "\
d1b8746d
SM
912Find the first item satisfying PREDICATE in SEQ.
913Return the matching item, or nil if not found.
914
915Keywords supported: :key :start :end :from-end
916
917\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
918
fc5e09b3 919(autoload 'find-if-not "cl-seq" "\
d1b8746d
SM
920Find the first item not satisfying PREDICATE in SEQ.
921Return the matching item, or nil if not found.
922
923Keywords supported: :key :start :end :from-end
924
925\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
926
fc5e09b3 927(autoload 'position "cl-seq" "\
d1b8746d
SM
928Find the first occurrence of ITEM in SEQ.
929Return the index of the matching item, or nil if not found.
930
931Keywords supported: :test :test-not :key :start :end :from-end
932
933\(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
934
fc5e09b3 935(autoload 'position-if "cl-seq" "\
d1b8746d
SM
936Find the first item satisfying PREDICATE in SEQ.
937Return the index of the matching item, or nil if not found.
938
939Keywords supported: :key :start :end :from-end
940
941\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
942
fc5e09b3 943(autoload 'position-if-not "cl-seq" "\
d1b8746d
SM
944Find the first item not satisfying PREDICATE in SEQ.
945Return the index of the matching item, or nil if not found.
946
947Keywords supported: :key :start :end :from-end
948
949\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
950
fc5e09b3 951(autoload 'count "cl-seq" "\
d1b8746d
SM
952Count the number of occurrences of ITEM in SEQ.
953
954Keywords supported: :test :test-not :key :start :end
955
956\(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
957
fc5e09b3 958(autoload 'count-if "cl-seq" "\
d1b8746d
SM
959Count the number of items satisfying PREDICATE in SEQ.
960
961Keywords supported: :key :start :end
962
963\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
964
fc5e09b3 965(autoload 'count-if-not "cl-seq" "\
d1b8746d
SM
966Count the number of items not satisfying PREDICATE in SEQ.
967
968Keywords supported: :key :start :end
969
970\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
971
fc5e09b3 972(autoload 'mismatch "cl-seq" "\
d1b8746d
SM
973Compare SEQ1 with SEQ2, return index of first mismatching element.
974Return nil if the sequences match. If one sequence is a prefix of the
975other, the return value indicates the end of the shorter sequence.
976
977Keywords supported: :test :test-not :key :start1 :end1 :start2 :end2 :from-end
978
979\(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil)
980
fc5e09b3 981(autoload 'search "cl-seq" "\
d1b8746d
SM
982Search for SEQ1 as a subsequence of SEQ2.
983Return the index of the leftmost element of the first match found;
984return nil if there are no matches.
985
986Keywords supported: :test :test-not :key :start1 :end1 :start2 :end2 :from-end
987
988\(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil)
989
fc5e09b3 990(autoload 'sort* "cl-seq" "\
d1b8746d
SM
991Sort the argument SEQ according to PREDICATE.
992This is a destructive function; it reuses the storage of SEQ if possible.
993
994Keywords supported: :key
995
996\(fn SEQ PREDICATE [KEYWORD VALUE]...)" nil nil)
997
fc5e09b3 998(autoload 'stable-sort "cl-seq" "\
d1b8746d
SM
999Sort the argument SEQ stably according to PREDICATE.
1000This is a destructive function; it reuses the storage of SEQ if possible.
1001
1002Keywords supported: :key
1003
1004\(fn SEQ PREDICATE [KEYWORD VALUE]...)" nil nil)
1005
fc5e09b3 1006(autoload 'merge "cl-seq" "\
d1b8746d
SM
1007Destructively merge the two sequences to produce a new sequence.
1008TYPE is the sequence type to return, SEQ1 and SEQ2 are the two argument
1009sequences, and PREDICATE is a `less-than' predicate on the elements.
1010
1011Keywords supported: :key
1012
1013\(fn TYPE SEQ1 SEQ2 PREDICATE [KEYWORD VALUE]...)" nil nil)
1014
fc5e09b3 1015(autoload 'member* "cl-seq" "\
d1b8746d
SM
1016Find the first occurrence of ITEM in LIST.
1017Return the sublist of LIST whose car is ITEM.
1018
1019Keywords supported: :test :test-not :key
1020
1021\(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1022
fc5e09b3 1023(autoload 'member-if "cl-seq" "\
d1b8746d
SM
1024Find the first item satisfying PREDICATE in LIST.
1025Return the sublist of LIST whose car matches.
1026
1027Keywords supported: :key
1028
1029\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1030
fc5e09b3 1031(autoload 'member-if-not "cl-seq" "\
d1b8746d
SM
1032Find the first item not satisfying PREDICATE in LIST.
1033Return the sublist of LIST whose car matches.
1034
1035Keywords supported: :key
1036
1037\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1038
fc5e09b3 1039(autoload 'cl-adjoin "cl-seq" "\
d1b8746d
SM
1040Not documented
1041
1042\(fn CL-ITEM CL-LIST &rest CL-KEYS)" nil nil)
1043
fc5e09b3 1044(autoload 'assoc* "cl-seq" "\
d1b8746d
SM
1045Find the first item whose car matches ITEM in LIST.
1046
1047Keywords supported: :test :test-not :key
1048
1049\(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1050
fc5e09b3 1051(autoload 'assoc-if "cl-seq" "\
d1b8746d
SM
1052Find the first item whose car satisfies PREDICATE in LIST.
1053
1054Keywords supported: :key
1055
1056\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1057
fc5e09b3 1058(autoload 'assoc-if-not "cl-seq" "\
d1b8746d
SM
1059Find the first item whose car does not satisfy PREDICATE in LIST.
1060
1061Keywords supported: :key
1062
1063\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1064
fc5e09b3 1065(autoload 'rassoc* "cl-seq" "\
d1b8746d
SM
1066Find the first item whose cdr matches ITEM in LIST.
1067
1068Keywords supported: :test :test-not :key
1069
1070\(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1071
fc5e09b3 1072(autoload 'rassoc-if "cl-seq" "\
d1b8746d
SM
1073Find the first item whose cdr satisfies PREDICATE in LIST.
1074
1075Keywords supported: :key
1076
1077\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1078
fc5e09b3 1079(autoload 'rassoc-if-not "cl-seq" "\
d1b8746d
SM
1080Find the first item whose cdr does not satisfy PREDICATE in LIST.
1081
1082Keywords supported: :key
1083
1084\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1085
fc5e09b3 1086(autoload 'union "cl-seq" "\
d1b8746d 1087Combine LIST1 and LIST2 using a set-union operation.
16b737dc 1088The resulting list contains all items that appear in either LIST1 or LIST2.
d1b8746d
SM
1089This is a non-destructive function; it makes a copy of the data if necessary
1090to avoid corrupting the original LIST1 and LIST2.
1091
1092Keywords supported: :test :test-not :key
1093
1094\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1095
fc5e09b3 1096(autoload 'nunion "cl-seq" "\
d1b8746d 1097Combine LIST1 and LIST2 using a set-union operation.
16b737dc 1098The resulting list contains all items that appear in either LIST1 or LIST2.
d1b8746d
SM
1099This is a destructive function; it reuses the storage of LIST1 and LIST2
1100whenever possible.
1101
1102Keywords supported: :test :test-not :key
1103
1104\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1105
fc5e09b3 1106(autoload 'intersection "cl-seq" "\
d1b8746d 1107Combine LIST1 and LIST2 using a set-intersection operation.
16b737dc 1108The resulting list contains all items that appear in both LIST1 and LIST2.
d1b8746d
SM
1109This is a non-destructive function; it makes a copy of the data if necessary
1110to avoid corrupting the original LIST1 and LIST2.
1111
1112Keywords supported: :test :test-not :key
1113
1114\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1115
fc5e09b3 1116(autoload 'nintersection "cl-seq" "\
d1b8746d 1117Combine LIST1 and LIST2 using a set-intersection operation.
16b737dc 1118The resulting list contains all items that appear in both LIST1 and LIST2.
d1b8746d
SM
1119This is a destructive function; it reuses the storage of LIST1 and LIST2
1120whenever possible.
1121
1122Keywords supported: :test :test-not :key
1123
1124\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1125
fc5e09b3 1126(autoload 'set-difference "cl-seq" "\
d1b8746d 1127Combine LIST1 and LIST2 using a set-difference operation.
16b737dc 1128The resulting list contains all items that appear in LIST1 but not LIST2.
d1b8746d
SM
1129This is a non-destructive function; it makes a copy of the data if necessary
1130to avoid corrupting the original LIST1 and LIST2.
1131
1132Keywords supported: :test :test-not :key
1133
1134\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1135
fc5e09b3 1136(autoload 'nset-difference "cl-seq" "\
d1b8746d 1137Combine LIST1 and LIST2 using a set-difference operation.
16b737dc 1138The resulting list contains all items that appear in LIST1 but not LIST2.
d1b8746d
SM
1139This is a destructive function; it reuses the storage of LIST1 and LIST2
1140whenever possible.
1141
1142Keywords supported: :test :test-not :key
1143
1144\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1145
fc5e09b3 1146(autoload 'set-exclusive-or "cl-seq" "\
d1b8746d 1147Combine LIST1 and LIST2 using a set-exclusive-or operation.
16b737dc 1148The resulting list contains all items appearing in exactly one of LIST1, LIST2.
d1b8746d
SM
1149This is a non-destructive function; it makes a copy of the data if necessary
1150to avoid corrupting the original LIST1 and LIST2.
1151
1152Keywords supported: :test :test-not :key
1153
1154\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1155
fc5e09b3 1156(autoload 'nset-exclusive-or "cl-seq" "\
d1b8746d 1157Combine LIST1 and LIST2 using a set-exclusive-or operation.
16b737dc 1158The resulting list contains all items appearing in exactly one of LIST1, LIST2.
d1b8746d
SM
1159This is a destructive function; it reuses the storage of LIST1 and LIST2
1160whenever possible.
1161
1162Keywords supported: :test :test-not :key
1163
1164\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1165
fc5e09b3 1166(autoload 'subsetp "cl-seq" "\
d1b8746d
SM
1167Return true if LIST1 is a subset of LIST2.
1168I.e., if every element of LIST1 also appears in LIST2.
1169
1170Keywords supported: :test :test-not :key
1171
1172\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1173
fc5e09b3 1174(autoload 'subst-if "cl-seq" "\
d1b8746d
SM
1175Substitute NEW for elements matching PREDICATE in TREE (non-destructively).
1176Return a copy of TREE with all matching elements replaced by NEW.
1177
1178Keywords supported: :key
1179
1180\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1181
fc5e09b3 1182(autoload 'subst-if-not "cl-seq" "\
d1b8746d
SM
1183Substitute NEW for elts not matching PREDICATE in TREE (non-destructively).
1184Return a copy of TREE with all non-matching elements replaced by NEW.
1185
1186Keywords supported: :key
1187
1188\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1189
fc5e09b3 1190(autoload 'nsubst "cl-seq" "\
d1b8746d
SM
1191Substitute NEW for OLD everywhere in TREE (destructively).
1192Any element of TREE which is `eql' to OLD is changed to NEW (via a call
1193to `setcar').
1194
1195Keywords supported: :test :test-not :key
1196
1197\(fn NEW OLD TREE [KEYWORD VALUE]...)" nil nil)
1198
fc5e09b3 1199(autoload 'nsubst-if "cl-seq" "\
d1b8746d
SM
1200Substitute NEW for elements matching PREDICATE in TREE (destructively).
1201Any element of TREE which matches is changed to NEW (via a call to `setcar').
1202
1203Keywords supported: :key
1204
1205\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1206
fc5e09b3 1207(autoload 'nsubst-if-not "cl-seq" "\
d1b8746d
SM
1208Substitute NEW for elements not matching PREDICATE in TREE (destructively).
1209Any element of TREE which matches is changed to NEW (via a call to `setcar').
1210
1211Keywords supported: :key
1212
1213\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1214
fc5e09b3 1215(autoload 'sublis "cl-seq" "\
d1b8746d
SM
1216Perform substitutions indicated by ALIST in TREE (non-destructively).
1217Return a copy of TREE with all matching elements replaced.
1218
1219Keywords supported: :test :test-not :key
1220
1221\(fn ALIST TREE [KEYWORD VALUE]...)" nil nil)
1222
fc5e09b3 1223(autoload 'nsublis "cl-seq" "\
d1b8746d
SM
1224Perform substitutions indicated by ALIST in TREE (destructively).
1225Any matching element of TREE is changed via a call to `setcar'.
1226
1227Keywords supported: :test :test-not :key
1228
1229\(fn ALIST TREE [KEYWORD VALUE]...)" nil nil)
1230
fc5e09b3 1231(autoload 'tree-equal "cl-seq" "\
d1b8746d
SM
1232Return t if trees TREE1 and TREE2 have `eql' leaves.
1233Atoms are compared by `eql'; cons cells are compared recursively.
1234
1235Keywords supported: :test :test-not :key
1236
1237\(fn TREE1 TREE2 [KEYWORD VALUE]...)" nil nil)
1238
1239;;;***
1240\f
1241;; Local Variables:
1242;; version-control: never
1243;; no-byte-compile: t
1244;; no-update-autoloads: t
e97a42c1 1245;; coding: utf-8
d1b8746d 1246;; End:
d1b8746d 1247;;; cl-loaddefs.el ends here