Merge from mainline.
[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
61f74651 13;;;;;; cl-mapcar-many equalp coerce) "cl-extra" "cl-extra.el" "0fa13e08069009fb44873beae11aab93")
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
bd78fa1d
CY
280;;;;;; declare locally multiple-value-setq multiple-value-bind lexical-let*
281;;;;;; lexical-let symbol-macrolet macrolet labels flet progv psetq
282;;;;;; do-all-symbols do-symbols dotimes dolist do* do loop return-from
283;;;;;; return block etypecase typecase ecase case load-time-value
284;;;;;; eval-when destructuring-bind function* defmacro* defun* gentemp
f80aa5bf 285;;;;;; gensym) "cl-macs" "cl-macs.el" "fd9e3122cb1900c82072cb61a5f3c1bd")
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" "\
d1b8746d
SM
322Not documented
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
SM
391Return from the block named NAME.
392This jump out to the innermost enclosing `(block NAME ...)' form,
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" "\
d1b8746d
SM
448Not documented
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
JB
507The main visible difference is that lambdas inside BODY, and in
508successive bindings within BINDINGS, will create lexical closures
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" "\
d1b8746d
SM
534Not documented
535
536\(fn &rest BODY)" nil (quote macro))
537
5e4599b8 538(autoload 'declare "cl-macs" "\
d1b8746d
SM
539Not documented
540
541\(fn &rest SPECS)" nil (quote macro))
542
5e4599b8 543(autoload 'define-setf-method "cl-macs" "\
d1b8746d
SM
544Define a `setf' method.
545This method shows how to handle `setf's to places of the form (NAME ARGS...).
546The argument forms ARGS are bound according to ARGLIST, as if NAME were
547going to be expanded as a macro, then the BODY forms are executed and must
548return a list of five elements: a temporary-variables list, a value-forms
549list, a store-variables list (of length one), a store-form, and an access-
550form. See `defsetf' for a simpler way to define most setf-methods.
551
552\(fn NAME ARGLIST BODY...)" nil (quote macro))
553
5e4599b8 554(autoload 'defsetf "cl-macs" "\
a2fb8c1e 555Define a `setf' method.
d1b8746d
SM
556This macro is an easy-to-use substitute for `define-setf-method' that works
557well for simple place forms. In the simple `defsetf' form, `setf's of
558the form (setf (NAME ARGS...) VAL) are transformed to function or macro
559calls of the form (FUNC ARGS... VAL). Example:
560
561 (defsetf aref aset)
562
563Alternate form: (defsetf NAME ARGLIST (STORE) BODY...).
564Here, the above `setf' call is expanded by binding the argument forms ARGS
565according to ARGLIST, binding the value form VAL to STORE, then executing
566BODY, which must return a Lisp form that does the necessary `setf' operation.
567Actually, ARGLIST and STORE may be bound to temporary variables which are
568introduced automatically to preserve proper execution order of the arguments.
569Example:
570
571 (defsetf nth (n x) (v) (list 'setcar (list 'nthcdr n x) v))
572
573\(fn NAME [FUNC | ARGLIST (STORE) BODY...])" nil (quote macro))
574
5e4599b8 575(autoload 'get-setf-method "cl-macs" "\
d1b8746d
SM
576Return a list of five values describing the setf-method for PLACE.
577PLACE may be any Lisp form which can appear as the PLACE argument to
578a macro like `setf' or `incf'.
579
580\(fn PLACE &optional ENV)" nil nil)
581
5e4599b8 582(autoload 'setf "cl-macs" "\
d1b8746d
SM
583Set each PLACE to the value of its VAL.
584This is a generalized version of `setq'; the PLACEs may be symbolic
585references such as (car x) or (aref x i), as well as plain symbols.
586For example, (setf (cadar x) y) is equivalent to (setcar (cdar x) y).
587The return value is the last VAL in the list.
588
589\(fn PLACE VAL PLACE VAL ...)" nil (quote macro))
590
5e4599b8 591(autoload 'psetf "cl-macs" "\
d1b8746d
SM
592Set PLACEs to the values VALs in parallel.
593This is like `setf', except that all VAL forms are evaluated (in order)
594before assigning any PLACEs to the corresponding values.
595
596\(fn PLACE VAL PLACE VAL ...)" nil (quote macro))
597
5e4599b8 598(autoload 'cl-do-pop "cl-macs" "\
d1b8746d
SM
599Not documented
600
601\(fn PLACE)" nil nil)
602
5e4599b8 603(autoload 'remf "cl-macs" "\
d1b8746d
SM
604Remove TAG from property list PLACE.
605PLACE may be a symbol, or any generalized variable allowed by `setf'.
606The form returns true if TAG was found and removed, nil otherwise.
607
608\(fn PLACE TAG)" nil (quote macro))
609
5e4599b8 610(autoload 'shiftf "cl-macs" "\
d1b8746d
SM
611Shift left among PLACEs.
612Example: (shiftf A B C) sets A to B, B to C, and returns the old A.
613Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
614
615\(fn PLACE... VAL)" nil (quote macro))
616
5e4599b8 617(autoload 'rotatef "cl-macs" "\
d1b8746d
SM
618Rotate left among PLACEs.
619Example: (rotatef A B C) sets A to B, B to C, and C to A. It returns nil.
620Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
621
622\(fn PLACE...)" nil (quote macro))
623
5e4599b8 624(autoload 'letf "cl-macs" "\
d1b8746d
SM
625Temporarily bind to PLACEs.
626This is the analogue of `let', but with generalized variables (in the
627sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
628VALUE, then the BODY forms are executed. On exit, either normally or
629because of a `throw' or error, the PLACEs are set back to their original
630values. Note that this macro is *not* available in Common Lisp.
631As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
632the PLACE is not modified before executing BODY.
633
634\(fn ((PLACE VALUE) ...) BODY...)" nil (quote macro))
635
5e4599b8 636(autoload 'letf* "cl-macs" "\
d1b8746d
SM
637Temporarily bind to PLACEs.
638This is the analogue of `let*', but with generalized variables (in the
639sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
640VALUE, then the BODY forms are executed. On exit, either normally or
641because of a `throw' or error, the PLACEs are set back to their original
642values. Note that this macro is *not* available in Common Lisp.
643As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
644the PLACE is not modified before executing BODY.
645
646\(fn ((PLACE VALUE) ...) BODY...)" nil (quote macro))
647
5e4599b8 648(autoload 'callf "cl-macs" "\
d1b8746d
SM
649Set PLACE to (FUNC PLACE ARGS...).
650FUNC should be an unquoted function name. PLACE may be a symbol,
651or any generalized variable allowed by `setf'.
652
653\(fn FUNC PLACE ARGS...)" nil (quote macro))
654
5e4599b8 655(autoload 'callf2 "cl-macs" "\
d1b8746d
SM
656Set PLACE to (FUNC ARG1 PLACE ARGS...).
657Like `callf', but PLACE is the second argument of FUNC, not the first.
658
659\(fn FUNC ARG1 PLACE ARGS...)" nil (quote macro))
660
5e4599b8 661(autoload 'define-modify-macro "cl-macs" "\
d1b8746d
SM
662Define a `setf'-like modify macro.
663If NAME is called, it combines its PLACE argument with the other arguments
664from ARGLIST using FUNC: (define-modify-macro incf (&optional (n 1)) +)
665
666\(fn NAME ARGLIST FUNC &optional DOC)" nil (quote macro))
667
5e4599b8 668(autoload 'defstruct "cl-macs" "\
d1b8746d 669Define a struct type.
c7dc1ac1
CY
670This macro defines a new data type called NAME that stores data
671in SLOTs. It defines a `make-NAME' constructor, a `copy-NAME'
672copier, a `NAME-p' predicate, and slot accessors named `NAME-SLOT'.
673You can use the accessors to set the corresponding slots, via `setf'.
d1b8746d 674
c7dc1ac1
CY
675NAME may instead take the form (NAME OPTIONS...), where each
676OPTION is either a single keyword or (KEYWORD VALUE).
677See Info node `(cl)Structures' for a list of valid keywords.
678
679Each SLOT may instead take the form (SLOT SLOT-OPTS...), where
680SLOT-OPTS are keyword-value pairs for that slot. Currently, only
681one keyword is supported, `:read-only'. If this has a non-nil
682value, that slot cannot be set via `setf'.
683
684\(fn NAME SLOTS...)" nil (quote macro))
d1b8746d 685
5e4599b8 686(autoload 'cl-struct-setf-expander "cl-macs" "\
d1b8746d
SM
687Not documented
688
689\(fn X NAME ACCESSOR PRED-FORM POS)" nil nil)
690
c93d41ba
CY
691(autoload 'deftype "cl-macs" "\
692Define NAME as a new data type.
693The type name can then be used in `typecase', `check-type', etc.
694
695\(fn NAME ARGLIST &rest BODY)" nil (quote macro))
696
5e4599b8 697(autoload 'typep "cl-macs" "\
d1b8746d
SM
698Check that OBJECT is of type TYPE.
699TYPE is a Common Lisp-style type specifier.
700
701\(fn OBJECT TYPE)" nil nil)
702
5e4599b8 703(autoload 'check-type "cl-macs" "\
d1b8746d
SM
704Verify that FORM is of type TYPE; signal an error if not.
705STRING is an optional description of the desired type.
706
707\(fn FORM TYPE &optional STRING)" nil (quote macro))
708
5e4599b8 709(autoload 'assert "cl-macs" "\
d1b8746d
SM
710Verify that FORM returns non-nil; signal an error if not.
711Second arg SHOW-ARGS means to include arguments of FORM in message.
712Other args STRING and ARGS... are arguments to be passed to `error'.
713They are not evaluated unless the assertion fails. If STRING is
714omitted, a default message listing FORM itself is used.
715
716\(fn FORM &optional SHOW-ARGS STRING &rest ARGS)" nil (quote macro))
717
5e4599b8 718(autoload 'define-compiler-macro "cl-macs" "\
d1b8746d
SM
719Define a compiler-only macro.
720This is like `defmacro', but macro expansion occurs only if the call to
721FUNC is compiled (i.e., not interpreted). Compiler macros should be used
722for optimizing the way calls to FUNC are compiled; the form returned by
723BODY should do the same thing as a call to the normal function called
724FUNC, though possibly more efficiently. Note that, like regular macros,
725compiler macros are expanded repeatedly until no further expansions are
726possible. Unlike regular macros, BODY can decide to \"punt\" and leave the
727original function call alone by declaring an initial `&whole foo' parameter
728and then returning foo.
729
730\(fn FUNC ARGS &rest BODY)" nil (quote macro))
731
5e4599b8 732(autoload 'compiler-macroexpand "cl-macs" "\
d1b8746d
SM
733Not documented
734
735\(fn FORM)" nil nil)
736
eb123b12
GM
737(autoload 'defsubst* "cl-macs" "\
738Define NAME as a function.
739Like `defun', except the function is automatically declared `inline',
740ARGLIST allows full Common Lisp conventions, and BODY is implicitly
741surrounded by (block NAME ...).
742
743\(fn NAME ARGLIST [DOCSTRING] BODY...)" nil (quote macro))
744
d1b8746d
SM
745;;;***
746\f
747;;;### (autoloads (tree-equal nsublis sublis nsubst-if-not nsubst-if
748;;;;;; nsubst subst-if-not subst-if subsetp nset-exclusive-or set-exclusive-or
749;;;;;; nset-difference set-difference nintersection intersection
750;;;;;; nunion union rassoc-if-not rassoc-if rassoc* assoc-if-not
751;;;;;; assoc-if assoc* cl-adjoin member-if-not member-if member*
752;;;;;; merge stable-sort sort* search mismatch count-if-not count-if
753;;;;;; count position-if-not position-if position find-if-not find-if
754;;;;;; find nsubstitute-if-not nsubstitute-if nsubstitute substitute-if-not
755;;;;;; substitute-if substitute delete-duplicates remove-duplicates
756;;;;;; delete-if-not delete-if delete* remove-if-not remove-if remove*
61f74651 757;;;;;; replace fill reduce) "cl-seq" "cl-seq.el" "06b7f4180b3e40db2e6dae228c3265a8")
d1b8746d
SM
758;;; Generated autoloads from cl-seq.el
759
fc5e09b3 760(autoload 'reduce "cl-seq" "\
d1b8746d
SM
761Reduce two-argument FUNCTION across SEQ.
762
763Keywords supported: :start :end :from-end :initial-value :key
764
765\(fn FUNCTION SEQ [KEYWORD VALUE]...)" nil nil)
766
fc5e09b3 767(autoload 'fill "cl-seq" "\
d1b8746d
SM
768Fill the elements of SEQ with ITEM.
769
770Keywords supported: :start :end
771
772\(fn SEQ ITEM [KEYWORD VALUE]...)" nil nil)
773
fc5e09b3 774(autoload 'replace "cl-seq" "\
d1b8746d
SM
775Replace the elements of SEQ1 with the elements of SEQ2.
776SEQ1 is destructively modified, then returned.
777
778Keywords supported: :start1 :end1 :start2 :end2
779
780\(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil)
781
fc5e09b3 782(autoload 'remove* "cl-seq" "\
d1b8746d
SM
783Remove all occurrences of ITEM in SEQ.
784This is a non-destructive function; it makes a copy of SEQ if necessary
785to avoid corrupting the original SEQ.
786
787Keywords supported: :test :test-not :key :count :start :end :from-end
788
789\(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
790
fc5e09b3 791(autoload 'remove-if "cl-seq" "\
d1b8746d
SM
792Remove all items satisfying PREDICATE in SEQ.
793This is a non-destructive function; it makes a copy of SEQ if necessary
794to avoid corrupting the original SEQ.
795
796Keywords supported: :key :count :start :end :from-end
797
798\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
799
fc5e09b3 800(autoload 'remove-if-not "cl-seq" "\
d1b8746d
SM
801Remove all items not satisfying PREDICATE in SEQ.
802This is a non-destructive function; it makes a copy of SEQ if necessary
803to avoid corrupting the original SEQ.
804
805Keywords supported: :key :count :start :end :from-end
806
807\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
808
fc5e09b3 809(autoload 'delete* "cl-seq" "\
d1b8746d
SM
810Remove all occurrences of ITEM in SEQ.
811This is a destructive function; it reuses the storage of SEQ whenever possible.
812
813Keywords supported: :test :test-not :key :count :start :end :from-end
814
815\(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
816
fc5e09b3 817(autoload 'delete-if "cl-seq" "\
d1b8746d
SM
818Remove all items satisfying PREDICATE in SEQ.
819This is a destructive function; it reuses the storage of SEQ whenever possible.
820
821Keywords supported: :key :count :start :end :from-end
822
823\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
824
fc5e09b3 825(autoload 'delete-if-not "cl-seq" "\
d1b8746d
SM
826Remove all items not satisfying PREDICATE in SEQ.
827This is a destructive function; it reuses the storage of SEQ whenever possible.
828
829Keywords supported: :key :count :start :end :from-end
830
831\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
832
fc5e09b3 833(autoload 'remove-duplicates "cl-seq" "\
d1b8746d
SM
834Return a copy of SEQ with all duplicate elements removed.
835
836Keywords supported: :test :test-not :key :start :end :from-end
837
838\(fn SEQ [KEYWORD VALUE]...)" nil nil)
839
fc5e09b3 840(autoload 'delete-duplicates "cl-seq" "\
d1b8746d
SM
841Remove all duplicate elements from SEQ (destructively).
842
843Keywords supported: :test :test-not :key :start :end :from-end
844
845\(fn SEQ [KEYWORD VALUE]...)" nil nil)
846
fc5e09b3 847(autoload 'substitute "cl-seq" "\
d1b8746d
SM
848Substitute NEW for OLD in SEQ.
849This is a non-destructive function; it makes a copy of SEQ if necessary
850to avoid corrupting the original SEQ.
851
852Keywords supported: :test :test-not :key :count :start :end :from-end
853
854\(fn NEW OLD SEQ [KEYWORD VALUE]...)" nil nil)
855
fc5e09b3 856(autoload 'substitute-if "cl-seq" "\
d1b8746d
SM
857Substitute NEW for all items satisfying PREDICATE in SEQ.
858This is a non-destructive function; it makes a copy of SEQ if necessary
859to avoid corrupting the original SEQ.
860
861Keywords supported: :key :count :start :end :from-end
862
863\(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
864
fc5e09b3 865(autoload 'substitute-if-not "cl-seq" "\
d1b8746d
SM
866Substitute NEW for all items not satisfying PREDICATE in SEQ.
867This is a non-destructive function; it makes a copy of SEQ if necessary
868to avoid corrupting the original SEQ.
869
870Keywords supported: :key :count :start :end :from-end
871
872\(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
873
fc5e09b3 874(autoload 'nsubstitute "cl-seq" "\
d1b8746d
SM
875Substitute NEW for OLD in SEQ.
876This is a destructive function; it reuses the storage of SEQ whenever possible.
877
878Keywords supported: :test :test-not :key :count :start :end :from-end
879
880\(fn NEW OLD SEQ [KEYWORD VALUE]...)" nil nil)
881
fc5e09b3 882(autoload 'nsubstitute-if "cl-seq" "\
d1b8746d
SM
883Substitute NEW for all items satisfying PREDICATE in SEQ.
884This is a destructive function; it reuses the storage of SEQ whenever possible.
885
886Keywords supported: :key :count :start :end :from-end
887
888\(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
889
fc5e09b3 890(autoload 'nsubstitute-if-not "cl-seq" "\
d1b8746d
SM
891Substitute NEW for all items not satisfying PREDICATE in SEQ.
892This is a destructive function; it reuses the storage of SEQ whenever possible.
893
894Keywords supported: :key :count :start :end :from-end
895
896\(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
897
fc5e09b3 898(autoload 'find "cl-seq" "\
d1b8746d
SM
899Find the first occurrence of ITEM in SEQ.
900Return the matching ITEM, or nil if not found.
901
902Keywords supported: :test :test-not :key :start :end :from-end
903
904\(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
905
fc5e09b3 906(autoload 'find-if "cl-seq" "\
d1b8746d
SM
907Find the first item satisfying PREDICATE in SEQ.
908Return the matching item, or nil if not found.
909
910Keywords supported: :key :start :end :from-end
911
912\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
913
fc5e09b3 914(autoload 'find-if-not "cl-seq" "\
d1b8746d
SM
915Find the first item not satisfying PREDICATE in SEQ.
916Return the matching item, or nil if not found.
917
918Keywords supported: :key :start :end :from-end
919
920\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
921
fc5e09b3 922(autoload 'position "cl-seq" "\
d1b8746d
SM
923Find the first occurrence of ITEM in SEQ.
924Return the index of the matching item, or nil if not found.
925
926Keywords supported: :test :test-not :key :start :end :from-end
927
928\(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
929
fc5e09b3 930(autoload 'position-if "cl-seq" "\
d1b8746d
SM
931Find the first item satisfying PREDICATE in SEQ.
932Return the index of the matching item, or nil if not found.
933
934Keywords supported: :key :start :end :from-end
935
936\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
937
fc5e09b3 938(autoload 'position-if-not "cl-seq" "\
d1b8746d
SM
939Find the first item not satisfying PREDICATE in SEQ.
940Return the index of the matching item, or nil if not found.
941
942Keywords supported: :key :start :end :from-end
943
944\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
945
fc5e09b3 946(autoload 'count "cl-seq" "\
d1b8746d
SM
947Count the number of occurrences of ITEM in SEQ.
948
949Keywords supported: :test :test-not :key :start :end
950
951\(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
952
fc5e09b3 953(autoload 'count-if "cl-seq" "\
d1b8746d
SM
954Count the number of items satisfying PREDICATE in SEQ.
955
956Keywords supported: :key :start :end
957
958\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
959
fc5e09b3 960(autoload 'count-if-not "cl-seq" "\
d1b8746d
SM
961Count the number of items not satisfying PREDICATE in SEQ.
962
963Keywords supported: :key :start :end
964
965\(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
966
fc5e09b3 967(autoload 'mismatch "cl-seq" "\
d1b8746d
SM
968Compare SEQ1 with SEQ2, return index of first mismatching element.
969Return nil if the sequences match. If one sequence is a prefix of the
970other, the return value indicates the end of the shorter sequence.
971
972Keywords supported: :test :test-not :key :start1 :end1 :start2 :end2 :from-end
973
974\(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil)
975
fc5e09b3 976(autoload 'search "cl-seq" "\
d1b8746d
SM
977Search for SEQ1 as a subsequence of SEQ2.
978Return the index of the leftmost element of the first match found;
979return nil if there are no matches.
980
981Keywords supported: :test :test-not :key :start1 :end1 :start2 :end2 :from-end
982
983\(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil)
984
fc5e09b3 985(autoload 'sort* "cl-seq" "\
d1b8746d
SM
986Sort the argument SEQ according to PREDICATE.
987This is a destructive function; it reuses the storage of SEQ if possible.
988
989Keywords supported: :key
990
991\(fn SEQ PREDICATE [KEYWORD VALUE]...)" nil nil)
992
fc5e09b3 993(autoload 'stable-sort "cl-seq" "\
d1b8746d
SM
994Sort the argument SEQ stably according to PREDICATE.
995This is a destructive function; it reuses the storage of SEQ if possible.
996
997Keywords supported: :key
998
999\(fn SEQ PREDICATE [KEYWORD VALUE]...)" nil nil)
1000
fc5e09b3 1001(autoload 'merge "cl-seq" "\
d1b8746d
SM
1002Destructively merge the two sequences to produce a new sequence.
1003TYPE is the sequence type to return, SEQ1 and SEQ2 are the two argument
1004sequences, and PREDICATE is a `less-than' predicate on the elements.
1005
1006Keywords supported: :key
1007
1008\(fn TYPE SEQ1 SEQ2 PREDICATE [KEYWORD VALUE]...)" nil nil)
1009
fc5e09b3 1010(autoload 'member* "cl-seq" "\
d1b8746d
SM
1011Find the first occurrence of ITEM in LIST.
1012Return the sublist of LIST whose car is ITEM.
1013
1014Keywords supported: :test :test-not :key
1015
1016\(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1017
fc5e09b3 1018(autoload 'member-if "cl-seq" "\
d1b8746d
SM
1019Find the first item satisfying PREDICATE in LIST.
1020Return the sublist of LIST whose car matches.
1021
1022Keywords supported: :key
1023
1024\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1025
fc5e09b3 1026(autoload 'member-if-not "cl-seq" "\
d1b8746d
SM
1027Find the first item not satisfying PREDICATE in LIST.
1028Return the sublist of LIST whose car matches.
1029
1030Keywords supported: :key
1031
1032\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1033
fc5e09b3 1034(autoload 'cl-adjoin "cl-seq" "\
d1b8746d
SM
1035Not documented
1036
1037\(fn CL-ITEM CL-LIST &rest CL-KEYS)" nil nil)
1038
fc5e09b3 1039(autoload 'assoc* "cl-seq" "\
d1b8746d
SM
1040Find the first item whose car matches ITEM in LIST.
1041
1042Keywords supported: :test :test-not :key
1043
1044\(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1045
fc5e09b3 1046(autoload 'assoc-if "cl-seq" "\
d1b8746d
SM
1047Find the first item whose car satisfies PREDICATE in LIST.
1048
1049Keywords supported: :key
1050
1051\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1052
fc5e09b3 1053(autoload 'assoc-if-not "cl-seq" "\
d1b8746d
SM
1054Find the first item whose car does not satisfy PREDICATE in LIST.
1055
1056Keywords supported: :key
1057
1058\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1059
fc5e09b3 1060(autoload 'rassoc* "cl-seq" "\
d1b8746d
SM
1061Find the first item whose cdr matches ITEM in LIST.
1062
1063Keywords supported: :test :test-not :key
1064
1065\(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1066
fc5e09b3 1067(autoload 'rassoc-if "cl-seq" "\
d1b8746d
SM
1068Find the first item whose cdr satisfies PREDICATE in LIST.
1069
1070Keywords supported: :key
1071
1072\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1073
fc5e09b3 1074(autoload 'rassoc-if-not "cl-seq" "\
d1b8746d
SM
1075Find the first item whose cdr does not satisfy PREDICATE in LIST.
1076
1077Keywords supported: :key
1078
1079\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1080
fc5e09b3 1081(autoload 'union "cl-seq" "\
d1b8746d
SM
1082Combine LIST1 and LIST2 using a set-union operation.
1083The result list contains all items that appear in either LIST1 or LIST2.
1084This is a non-destructive function; it makes a copy of the data if necessary
1085to avoid corrupting the original LIST1 and LIST2.
1086
1087Keywords supported: :test :test-not :key
1088
1089\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1090
fc5e09b3 1091(autoload 'nunion "cl-seq" "\
d1b8746d
SM
1092Combine LIST1 and LIST2 using a set-union operation.
1093The result list contains all items that appear in either LIST1 or LIST2.
1094This is a destructive function; it reuses the storage of LIST1 and LIST2
1095whenever possible.
1096
1097Keywords supported: :test :test-not :key
1098
1099\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1100
fc5e09b3 1101(autoload 'intersection "cl-seq" "\
d1b8746d
SM
1102Combine LIST1 and LIST2 using a set-intersection operation.
1103The result list contains all items that appear in both LIST1 and LIST2.
1104This is a non-destructive function; it makes a copy of the data if necessary
1105to avoid corrupting the original LIST1 and LIST2.
1106
1107Keywords supported: :test :test-not :key
1108
1109\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1110
fc5e09b3 1111(autoload 'nintersection "cl-seq" "\
d1b8746d
SM
1112Combine LIST1 and LIST2 using a set-intersection operation.
1113The result list contains all items that appear in both LIST1 and LIST2.
1114This is a destructive function; it reuses the storage of LIST1 and LIST2
1115whenever possible.
1116
1117Keywords supported: :test :test-not :key
1118
1119\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1120
fc5e09b3 1121(autoload 'set-difference "cl-seq" "\
d1b8746d
SM
1122Combine LIST1 and LIST2 using a set-difference operation.
1123The result list contains all items that appear in LIST1 but not LIST2.
1124This is a non-destructive function; it makes a copy of the data if necessary
1125to avoid corrupting the original LIST1 and LIST2.
1126
1127Keywords supported: :test :test-not :key
1128
1129\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1130
fc5e09b3 1131(autoload 'nset-difference "cl-seq" "\
d1b8746d
SM
1132Combine LIST1 and LIST2 using a set-difference operation.
1133The result list contains all items that appear in LIST1 but not LIST2.
1134This is a destructive function; it reuses the storage of LIST1 and LIST2
1135whenever possible.
1136
1137Keywords supported: :test :test-not :key
1138
1139\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1140
fc5e09b3 1141(autoload 'set-exclusive-or "cl-seq" "\
d1b8746d
SM
1142Combine LIST1 and LIST2 using a set-exclusive-or operation.
1143The result list contains all items that appear in exactly one of LIST1, LIST2.
1144This is a non-destructive function; it makes a copy of the data if necessary
1145to avoid corrupting the original LIST1 and LIST2.
1146
1147Keywords supported: :test :test-not :key
1148
1149\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1150
fc5e09b3 1151(autoload 'nset-exclusive-or "cl-seq" "\
d1b8746d
SM
1152Combine LIST1 and LIST2 using a set-exclusive-or operation.
1153The result list contains all items that appear in exactly one of LIST1, LIST2.
1154This is a destructive function; it reuses the storage of LIST1 and LIST2
1155whenever possible.
1156
1157Keywords supported: :test :test-not :key
1158
1159\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1160
fc5e09b3 1161(autoload 'subsetp "cl-seq" "\
d1b8746d
SM
1162Return true if LIST1 is a subset of LIST2.
1163I.e., if every element of LIST1 also appears in LIST2.
1164
1165Keywords supported: :test :test-not :key
1166
1167\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1168
fc5e09b3 1169(autoload 'subst-if "cl-seq" "\
d1b8746d
SM
1170Substitute NEW for elements matching PREDICATE in TREE (non-destructively).
1171Return a copy of TREE with all matching elements replaced by NEW.
1172
1173Keywords supported: :key
1174
1175\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1176
fc5e09b3 1177(autoload 'subst-if-not "cl-seq" "\
d1b8746d
SM
1178Substitute NEW for elts not matching PREDICATE in TREE (non-destructively).
1179Return a copy of TREE with all non-matching elements replaced by NEW.
1180
1181Keywords supported: :key
1182
1183\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1184
fc5e09b3 1185(autoload 'nsubst "cl-seq" "\
d1b8746d
SM
1186Substitute NEW for OLD everywhere in TREE (destructively).
1187Any element of TREE which is `eql' to OLD is changed to NEW (via a call
1188to `setcar').
1189
1190Keywords supported: :test :test-not :key
1191
1192\(fn NEW OLD TREE [KEYWORD VALUE]...)" nil nil)
1193
fc5e09b3 1194(autoload 'nsubst-if "cl-seq" "\
d1b8746d
SM
1195Substitute NEW for elements matching PREDICATE in TREE (destructively).
1196Any element of TREE which matches is changed to NEW (via a call to `setcar').
1197
1198Keywords supported: :key
1199
1200\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1201
fc5e09b3 1202(autoload 'nsubst-if-not "cl-seq" "\
d1b8746d
SM
1203Substitute NEW for elements not matching PREDICATE in TREE (destructively).
1204Any element of TREE which matches is changed to NEW (via a call to `setcar').
1205
1206Keywords supported: :key
1207
1208\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1209
fc5e09b3 1210(autoload 'sublis "cl-seq" "\
d1b8746d
SM
1211Perform substitutions indicated by ALIST in TREE (non-destructively).
1212Return a copy of TREE with all matching elements replaced.
1213
1214Keywords supported: :test :test-not :key
1215
1216\(fn ALIST TREE [KEYWORD VALUE]...)" nil nil)
1217
fc5e09b3 1218(autoload 'nsublis "cl-seq" "\
d1b8746d
SM
1219Perform substitutions indicated by ALIST in TREE (destructively).
1220Any matching element of TREE is changed via a call to `setcar'.
1221
1222Keywords supported: :test :test-not :key
1223
1224\(fn ALIST TREE [KEYWORD VALUE]...)" nil nil)
1225
fc5e09b3 1226(autoload 'tree-equal "cl-seq" "\
d1b8746d
SM
1227Return t if trees TREE1 and TREE2 have `eql' leaves.
1228Atoms are compared by `eql'; cons cells are compared recursively.
1229
1230Keywords supported: :test :test-not :key
1231
1232\(fn TREE1 TREE2 [KEYWORD VALUE]...)" nil nil)
1233
1234;;;***
1235\f
1236;; Local Variables:
1237;; version-control: never
1238;; no-byte-compile: t
1239;; no-update-autoloads: t
e97a42c1 1240;; coding: utf-8
d1b8746d 1241;; End:
d1b8746d 1242;;; cl-loaddefs.el ends here