Auto-commit of loaddefs 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
bb3faf5b 6;;;### (autoloads (cl-prettyexpand cl-remprop cl--do-remf cl--set-getf
6fa6c4ae
SM
7;;;;;; cl-getf cl-get cl-tailp cl-list-length cl-nreconc cl-revappend
8;;;;;; cl-concatenate cl-subseq cl-float-limits cl-random-state-p
9;;;;;; cl-make-random-state cl-random cl-signum cl-rem cl-mod cl-round
222fbb8b
GM
10;;;;;; cl-truncate cl-ceiling cl-floor cl-isqrt cl-lcm cl-gcd cl--set-frame-visible-p
11;;;;;; cl--map-overlays cl--map-intervals cl--map-keymap-recursively
12;;;;;; cl-notevery cl-notany cl-every cl-some cl-mapcon cl-mapcan
fcc1acda
GM
13;;;;;; cl-mapl cl-mapc cl-maplist cl-map cl--mapcar-many cl-equalp
14;;;;;; cl-coerce) "cl-extra" "cl-extra.el" "7d7f65d8a05e954a919fe2555b68fb05")
d1b8746d
SM
15;;; Generated autoloads from cl-extra.el
16
093c0257 17(autoload 'cl-coerce "cl-extra" "\
d1b8746d
SM
18Coerce OBJECT to type TYPE.
19TYPE is a Common Lisp type specifier.
20
21\(fn OBJECT TYPE)" nil nil)
22
093c0257 23(autoload 'cl-equalp "cl-extra" "\
d1b8746d
SM
24Return t if two Lisp objects have similar structures and contents.
25This is like `equal', except that it accepts numerically equal
26numbers of different types (float vs. integer), and also compares
27strings case-insensitively.
28
29\(fn X Y)" nil nil)
30
bb3faf5b 31(autoload 'cl--mapcar-many "cl-extra" "\
01db225d 32
d1b8746d
SM
33
34\(fn CL-FUNC CL-SEQS)" nil nil)
35
093c0257 36(autoload 'cl-map "cl-extra" "\
d1b8746d
SM
37Map a FUNCTION across one or more SEQUENCEs, returning a sequence.
38TYPE is the sequence type to return.
39
40\(fn TYPE FUNCTION SEQUENCE...)" nil nil)
41
093c0257 42(autoload 'cl-maplist "cl-extra" "\
d1b8746d
SM
43Map FUNCTION to each sublist of LIST or LISTs.
44Like `mapcar', except applies to lists and their cdr's rather than to
45the elements themselves.
46
47\(fn FUNCTION LIST...)" nil nil)
48
fcc1acda
GM
49(autoload 'cl-mapc "cl-extra" "\
50Like `cl-mapcar', but does not accumulate values returned by the function.
51
52\(fn FUNCTION SEQUENCE...)" nil nil)
53
093c0257
SM
54(autoload 'cl-mapl "cl-extra" "\
55Like `cl-maplist', but does not accumulate values returned by the function.
d1b8746d
SM
56
57\(fn FUNCTION LIST...)" nil nil)
58
093c0257 59(autoload 'cl-mapcan "cl-extra" "\
d1b8746d
SM
60Like `mapcar', but nconc's together the values returned by the function.
61
62\(fn FUNCTION SEQUENCE...)" nil nil)
63
093c0257
SM
64(autoload 'cl-mapcon "cl-extra" "\
65Like `cl-maplist', but nconc's together the values returned by the function.
d1b8746d
SM
66
67\(fn FUNCTION LIST...)" nil nil)
68
093c0257 69(autoload 'cl-some "cl-extra" "\
d1b8746d
SM
70Return true if PREDICATE is true of any element of SEQ or SEQs.
71If so, return the true (non-nil) value returned by PREDICATE.
72
73\(fn PREDICATE SEQ...)" nil nil)
74
093c0257 75(autoload 'cl-every "cl-extra" "\
d1b8746d
SM
76Return true if PREDICATE is true of every element of SEQ or SEQs.
77
78\(fn PREDICATE SEQ...)" nil nil)
79
093c0257 80(autoload 'cl-notany "cl-extra" "\
d1b8746d
SM
81Return true if PREDICATE is false of every element of SEQ or SEQs.
82
83\(fn PREDICATE SEQ...)" nil nil)
84
093c0257 85(autoload 'cl-notevery "cl-extra" "\
d1b8746d
SM
86Return true if PREDICATE is false of some element of SEQ or SEQs.
87
88\(fn PREDICATE SEQ...)" nil nil)
89
bb3faf5b 90(autoload 'cl--map-keymap-recursively "cl-extra" "\
01db225d 91
d1b8746d
SM
92
93\(fn CL-FUNC-REC CL-MAP &optional CL-BASE)" nil nil)
94
bb3faf5b 95(autoload 'cl--map-intervals "cl-extra" "\
01db225d 96
d1b8746d
SM
97
98\(fn CL-FUNC &optional CL-WHAT CL-PROP CL-START CL-END)" nil nil)
99
bb3faf5b 100(autoload 'cl--map-overlays "cl-extra" "\
01db225d 101
d1b8746d
SM
102
103\(fn CL-FUNC &optional CL-BUFFER CL-START CL-END CL-ARG)" nil nil)
104
bb3faf5b 105(autoload 'cl--set-frame-visible-p "cl-extra" "\
01db225d 106
d1b8746d
SM
107
108\(fn FRAME VAL)" nil nil)
109
093c0257 110(autoload 'cl-gcd "cl-extra" "\
d1b8746d
SM
111Return the greatest common divisor of the arguments.
112
113\(fn &rest ARGS)" nil nil)
114
093c0257 115(autoload 'cl-lcm "cl-extra" "\
d1b8746d
SM
116Return the least common multiple of the arguments.
117
118\(fn &rest ARGS)" nil nil)
119
093c0257 120(autoload 'cl-isqrt "cl-extra" "\
d1b8746d
SM
121Return the integer square root of the argument.
122
123\(fn X)" nil nil)
124
093c0257 125(autoload 'cl-floor "cl-extra" "\
d1b8746d
SM
126Return a list of the floor of X and the fractional part of X.
127With two arguments, return floor and remainder of their quotient.
128
129\(fn X &optional Y)" nil nil)
130
093c0257 131(autoload 'cl-ceiling "cl-extra" "\
d1b8746d
SM
132Return a list of the ceiling of X and the fractional part of X.
133With two arguments, return ceiling and remainder of their quotient.
134
135\(fn X &optional Y)" nil nil)
136
093c0257 137(autoload 'cl-truncate "cl-extra" "\
d1b8746d
SM
138Return a list of the integer part of X and the fractional part of X.
139With two arguments, return truncation and remainder of their quotient.
140
141\(fn X &optional Y)" nil nil)
142
093c0257 143(autoload 'cl-round "cl-extra" "\
d1b8746d
SM
144Return a list of X rounded to the nearest integer and the remainder.
145With two arguments, return rounding and remainder of their quotient.
146
147\(fn X &optional Y)" nil nil)
148
093c0257 149(autoload 'cl-mod "cl-extra" "\
d1b8746d
SM
150The remainder of X divided by Y, with the same sign as Y.
151
152\(fn X Y)" nil nil)
153
093c0257 154(autoload 'cl-rem "cl-extra" "\
d1b8746d
SM
155The remainder of X divided by Y, with the same sign as X.
156
157\(fn X Y)" nil nil)
158
093c0257 159(autoload 'cl-signum "cl-extra" "\
d1b8746d
SM
160Return 1 if X is positive, -1 if negative, 0 if zero.
161
162\(fn X)" nil nil)
163
093c0257 164(autoload 'cl-random "cl-extra" "\
d1b8746d
SM
165Return a random nonnegative number less than LIM, an integer or float.
166Optional second arg STATE is a random-state object.
167
168\(fn LIM &optional STATE)" nil nil)
169
093c0257 170(autoload 'cl-make-random-state "cl-extra" "\
4735906a 171Return a copy of random-state STATE, or of the internal state if omitted.
d1b8746d
SM
172If STATE is t, return a new state object seeded from the time of day.
173
174\(fn &optional STATE)" nil nil)
175
093c0257 176(autoload 'cl-random-state-p "cl-extra" "\
d1b8746d
SM
177Return t if OBJECT is a random-state object.
178
179\(fn OBJECT)" nil nil)
180
5c4133cb 181(autoload 'cl-float-limits "cl-extra" "\
01db225d 182Initialize the Common Lisp floating-point parameters.
093c0257
SM
183This sets the values of: `cl-most-positive-float', `cl-most-negative-float',
184`cl-least-positive-float', `cl-least-negative-float', `cl-float-epsilon',
185`cl-float-negative-epsilon', `cl-least-positive-normalized-float', and
186`cl-least-negative-normalized-float'.
d1b8746d
SM
187
188\(fn)" nil nil)
189
093c0257 190(autoload 'cl-subseq "cl-extra" "\
d1b8746d
SM
191Return the subsequence of SEQ from START to END.
192If END is omitted, it defaults to the length of the sequence.
193If START or END is negative, it counts from the end.
194
195\(fn SEQ START &optional END)" nil nil)
196
093c0257 197(autoload 'cl-concatenate "cl-extra" "\
d1b8746d
SM
198Concatenate, into a sequence of type TYPE, the argument SEQUENCEs.
199
200\(fn TYPE SEQUENCE...)" nil nil)
201
093c0257 202(autoload 'cl-revappend "cl-extra" "\
d1b8746d
SM
203Equivalent to (append (reverse X) Y).
204
205\(fn X Y)" nil nil)
206
093c0257 207(autoload 'cl-nreconc "cl-extra" "\
d1b8746d
SM
208Equivalent to (nconc (nreverse X) Y).
209
210\(fn X Y)" nil nil)
211
093c0257 212(autoload 'cl-list-length "cl-extra" "\
d1b8746d
SM
213Return the length of list X. Return nil if list is circular.
214
215\(fn X)" nil nil)
216
093c0257 217(autoload 'cl-tailp "cl-extra" "\
d1b8746d
SM
218Return true if SUBLIST is a tail of LIST.
219
220\(fn SUBLIST LIST)" nil nil)
221
093c0257 222(autoload 'cl-get "cl-extra" "\
d1b8746d
SM
223Return the value of SYMBOL's PROPNAME property, or DEFAULT if none.
224
225\(fn SYMBOL PROPNAME &optional DEFAULT)" nil nil)
226
d9857e53
SM
227(put 'cl-get 'compiler-macro #'cl--compiler-macro-get)
228
093c0257 229(autoload 'cl-getf "cl-extra" "\
d1b8746d
SM
230Search PROPLIST for property PROPNAME; return its value or DEFAULT.
231PROPLIST is a list of the sort returned by `symbol-plist'.
232
233\(fn PROPLIST PROPNAME &optional DEFAULT)" nil nil)
234
bb3faf5b 235(autoload 'cl--set-getf "cl-extra" "\
01db225d 236
d1b8746d
SM
237
238\(fn PLIST TAG VAL)" nil nil)
239
bb3faf5b 240(autoload 'cl--do-remf "cl-extra" "\
01db225d 241
d1b8746d
SM
242
243\(fn PLIST TAG)" nil nil)
244
5c4133cb 245(autoload 'cl-remprop "cl-extra" "\
d1b8746d
SM
246Remove from SYMBOL's plist the property PROPNAME and its value.
247
248\(fn SYMBOL PROPNAME)" nil nil)
249
5c4133cb 250(autoload 'cl-prettyexpand "cl-extra" "\
01db225d 251
d1b8746d
SM
252
253\(fn FORM &optional FULL)" nil nil)
254
255;;;***
256\f
972debf2 257;;;### (autoloads (cl--compiler-macro-adjoin cl-defsubst cl-compiler-macroexpand
71adb94b 258;;;;;; cl-define-compiler-macro cl-assert cl-check-type cl-typep
222fbb8b
GM
259;;;;;; cl-deftype cl-defstruct cl-callf2 cl-callf cl-letf* cl-letf
260;;;;;; cl-rotatef cl-shiftf cl-remf cl-psetf cl-declare cl-the cl-locally
261;;;;;; cl-multiple-value-setq cl-multiple-value-bind cl-symbol-macrolet
262;;;;;; cl-macrolet cl-labels cl-flet* cl-flet cl-progv cl-psetq
263;;;;;; cl-do-all-symbols cl-do-symbols cl-dotimes cl-dolist cl-do*
264;;;;;; cl-do cl-loop cl-return-from cl-return cl-block cl-etypecase
265;;;;;; cl-typecase cl-ecase cl-case cl-load-time-value cl-eval-when
266;;;;;; cl-destructuring-bind cl-function cl-defmacro cl-defun cl-gentemp
972debf2 267;;;;;; cl-gensym cl--compiler-macro-cXXr cl--compiler-macro-list*)
f6c6e09c 268;;;;;; "cl-macs" "cl-macs.el" "57cf89149db1e8ea6bc1582713980cf8")
d1b8746d
SM
269;;; Generated autoloads from cl-macs.el
270
972debf2
SM
271(autoload 'cl--compiler-macro-list* "cl-macs" "\
272
273
274\(fn FORM ARG &rest OTHERS)" nil nil)
275
276(autoload 'cl--compiler-macro-cXXr "cl-macs" "\
277
278
279\(fn FORM X)" nil nil)
280
093c0257 281(autoload 'cl-gensym "cl-macs" "\
d1b8746d
SM
282Generate a new uninterned symbol.
283The name is made by appending a number to PREFIX, default \"G\".
284
285\(fn &optional PREFIX)" nil nil)
286
093c0257 287(autoload 'cl-gentemp "cl-macs" "\
d1b8746d
SM
288Generate a new interned symbol with a unique name.
289The name is made by appending a number to PREFIX, default \"G\".
290
291\(fn &optional PREFIX)" nil nil)
292
093c0257 293(autoload 'cl-defun "cl-macs" "\
d1b8746d
SM
294Define NAME as a function.
295Like normal `defun', except ARGLIST allows full Common Lisp conventions,
093c0257 296and BODY is implicitly surrounded by (cl-block NAME ...).
d1b8746d 297
03fef3e6 298\(fn NAME ARGLIST [DOCSTRING] BODY...)" nil t)
b581bb5c 299
093c0257 300(put 'cl-defun 'doc-string-elt '3)
b581bb5c 301
093c0257 302(put 'cl-defun 'lisp-indent-function '2)
03fef3e6 303
093c0257 304(autoload 'cl-defmacro "cl-macs" "\
d1b8746d
SM
305Define NAME as a macro.
306Like normal `defmacro', except ARGLIST allows full Common Lisp conventions,
093c0257 307and BODY is implicitly surrounded by (cl-block NAME ...).
d1b8746d 308
03fef3e6 309\(fn NAME ARGLIST [DOCSTRING] BODY...)" nil t)
b581bb5c 310
093c0257 311(put 'cl-defmacro 'doc-string-elt '3)
b581bb5c 312
093c0257 313(put 'cl-defmacro 'lisp-indent-function '2)
03fef3e6 314
093c0257 315(autoload 'cl-function "cl-macs" "\
d1b8746d
SM
316Introduce a function.
317Like normal `function', except that if argument is a lambda form,
318its argument list allows full Common Lisp conventions.
319
03fef3e6 320\(fn FUNC)" nil t)
d1b8746d 321
093c0257 322(autoload 'cl-destructuring-bind "cl-macs" "\
0d6459df 323
d1b8746d 324
03fef3e6 325\(fn ARGS EXPR &rest BODY)" nil t)
d1b8746d 326
093c0257 327(put 'cl-destructuring-bind 'lisp-indent-function '2)
b581bb5c 328
093c0257 329(autoload 'cl-eval-when "cl-macs" "\
d1b8746d
SM
330Control when BODY is evaluated.
331If `compile' is in WHEN, BODY is evaluated when compiled at top-level.
332If `load' is in WHEN, BODY is evaluated when loaded after top-level compile.
333If `eval' is in WHEN, BODY is evaluated when interpreted or at non-top-level.
334
03fef3e6 335\(fn (WHEN...) BODY...)" nil t)
d1b8746d 336
093c0257 337(put 'cl-eval-when 'lisp-indent-function '1)
b581bb5c 338
093c0257 339(autoload 'cl-load-time-value "cl-macs" "\
d1b8746d
SM
340Like `progn', but evaluates the body at load time.
341The result of the body appears to the compiler as a quoted constant.
342
03fef3e6 343\(fn FORM &optional READ-ONLY)" nil t)
d1b8746d 344
093c0257 345(autoload 'cl-case "cl-macs" "\
d1b8746d
SM
346Eval EXPR and choose among clauses on that value.
347Each clause looks like (KEYLIST BODY...). EXPR is evaluated and compared
348against each key in each KEYLIST; the corresponding BODY is evaluated.
093c0257 349If no clause succeeds, cl-case returns nil. A single atom may be used in
d1b8746d
SM
350place of a KEYLIST of one atom. A KEYLIST of t or `otherwise' is
351allowed only in the final clause, and matches if no other keys match.
352Key values are compared by `eql'.
353
03fef3e6 354\(fn EXPR (KEYLIST BODY...)...)" nil t)
d1b8746d 355
093c0257 356(put 'cl-case 'lisp-indent-function '1)
b581bb5c 357
093c0257 358(autoload 'cl-ecase "cl-macs" "\
222fbb8b 359Like `cl-case', but error if no case fits.
d1b8746d
SM
360`otherwise'-clauses are not allowed.
361
03fef3e6 362\(fn EXPR (KEYLIST BODY...)...)" nil t)
d1b8746d 363
093c0257 364(put 'cl-ecase 'lisp-indent-function '1)
b581bb5c 365
093c0257 366(autoload 'cl-typecase "cl-macs" "\
d1b8746d
SM
367Evals EXPR, chooses among clauses on that value.
368Each clause looks like (TYPE BODY...). EXPR is evaluated and, if it
369satisfies TYPE, the corresponding BODY is evaluated. If no clause succeeds,
093c0257 370cl-typecase returns nil. A TYPE of t or `otherwise' is allowed only in the
d1b8746d
SM
371final clause, and matches if no other keys match.
372
03fef3e6 373\(fn EXPR (TYPE BODY...)...)" nil t)
d1b8746d 374
093c0257 375(put 'cl-typecase 'lisp-indent-function '1)
b581bb5c 376
093c0257
SM
377(autoload 'cl-etypecase "cl-macs" "\
378Like `cl-typecase', but error if no case fits.
d1b8746d
SM
379`otherwise'-clauses are not allowed.
380
03fef3e6 381\(fn EXPR (TYPE BODY...)...)" nil t)
d1b8746d 382
093c0257 383(put 'cl-etypecase 'lisp-indent-function '1)
b581bb5c 384
093c0257 385(autoload 'cl-block "cl-macs" "\
d1b8746d 386Define a lexically-scoped block named NAME.
093c0257 387NAME may be any symbol. Code inside the BODY forms can call `cl-return-from'
d1b8746d
SM
388to jump prematurely out of the block. This differs from `catch' and `throw'
389in two respects: First, the NAME is an unevaluated symbol rather than a
390quoted symbol or other form; and second, NAME is lexically rather than
391dynamically scoped: Only references to it within BODY will work. These
392references may appear inside macro expansions, but not inside functions
393called from BODY.
394
03fef3e6 395\(fn NAME &rest BODY)" nil t)
d1b8746d 396
093c0257 397(put 'cl-block 'lisp-indent-function '1)
b581bb5c 398
093c0257 399(autoload 'cl-return "cl-macs" "\
d1b8746d 400Return from the block named nil.
093c0257 401This is equivalent to `(cl-return-from nil RESULT)'.
d1b8746d 402
03fef3e6 403\(fn &optional RESULT)" nil t)
d1b8746d 404
093c0257 405(autoload 'cl-return-from "cl-macs" "\
d1b8746d 406Return from the block named NAME.
093c0257 407This jumps out to the innermost enclosing `(cl-block NAME ...)' form,
d1b8746d
SM
408returning RESULT from that form (or nil if RESULT is omitted).
409This is compatible with Common Lisp, but note that `defun' and
410`defmacro' do not create implicit blocks as they do in Common Lisp.
411
03fef3e6 412\(fn NAME &optional RESULT)" nil t)
d1b8746d 413
093c0257 414(put 'cl-return-from 'lisp-indent-function '1)
b581bb5c 415
093c0257
SM
416(autoload 'cl-loop "cl-macs" "\
417The Common Lisp `cl-loop' macro.
d1b8746d
SM
418Valid clauses are:
419 for VAR from/upfrom/downfrom NUM to/upto/downto/above/below NUM by NUM,
420 for VAR in LIST by FUNC, for VAR on LIST by FUNC, for VAR = INIT then EXPR,
421 for VAR across ARRAY, repeat NUM, with VAR = INIT, while COND, until COND,
422 always COND, never COND, thereis COND, collect EXPR into VAR,
423 append EXPR into VAR, nconc EXPR into VAR, sum EXPR into VAR,
424 count EXPR into VAR, maximize EXPR into VAR, minimize EXPR into VAR,
425 if COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
426 unless COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
427 do EXPRS..., initially EXPRS..., finally EXPRS..., return EXPR,
428 finally return EXPR, named NAME.
429
03fef3e6 430\(fn CLAUSE...)" nil t)
d1b8746d 431
093c0257
SM
432(autoload 'cl-do "cl-macs" "\
433The Common Lisp `cl-do' loop.
d1b8746d 434
03fef3e6 435\(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" nil t)
d1b8746d 436
093c0257 437(put 'cl-do 'lisp-indent-function '2)
b581bb5c 438
093c0257
SM
439(autoload 'cl-do* "cl-macs" "\
440The Common Lisp `cl-do*' loop.
d1b8746d 441
03fef3e6 442\(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" nil t)
d1b8746d 443
093c0257 444(put 'cl-do* 'lisp-indent-function '2)
b581bb5c 445
093c0257 446(autoload 'cl-dolist "cl-macs" "\
d1b8746d
SM
447Loop over a list.
448Evaluate BODY with VAR bound to each `car' from LIST, in turn.
449Then evaluate RESULT to get return value, default nil.
568352e7 450An implicit nil block is established around the loop.
d1b8746d 451
03fef3e6 452\(fn (VAR LIST [RESULT]) BODY...)" nil t)
d1b8746d 453
222fbb8b
GM
454(put 'cl-dolist 'lisp-indent-function '1)
455
093c0257 456(autoload 'cl-dotimes "cl-macs" "\
d1b8746d
SM
457Loop a certain number of times.
458Evaluate BODY with VAR bound to successive integers from 0, inclusive,
459to COUNT, exclusive. Then evaluate RESULT to get return value, default
460nil.
461
03fef3e6 462\(fn (VAR COUNT [RESULT]) BODY...)" nil t)
d1b8746d 463
222fbb8b
GM
464(put 'cl-dotimes 'lisp-indent-function '1)
465
093c0257 466(autoload 'cl-do-symbols "cl-macs" "\
d1b8746d
SM
467Loop over all symbols.
468Evaluate BODY with VAR bound to each interned symbol, or to each symbol
469from OBARRAY.
470
03fef3e6 471\(fn (VAR [OBARRAY [RESULT]]) BODY...)" nil t)
d1b8746d 472
093c0257 473(put 'cl-do-symbols 'lisp-indent-function '1)
b581bb5c 474
093c0257 475(autoload 'cl-do-all-symbols "cl-macs" "\
f6c6e09c 476Like `cl-do-symbols', but use the default obarray.
0d6459df 477
f6c6e09c 478\(fn (VAR [RESULT]) BODY...)" nil t)
d1b8746d 479
093c0257 480(put 'cl-do-all-symbols 'lisp-indent-function '1)
b581bb5c 481
093c0257 482(autoload 'cl-psetq "cl-macs" "\
d1b8746d
SM
483Set SYMs to the values VALs in parallel.
484This is like `setq', except that all VAL forms are evaluated (in order)
485before assigning any symbols SYM to the corresponding values.
486
03fef3e6 487\(fn SYM VAL SYM VAL ...)" nil t)
d1b8746d 488
093c0257 489(autoload 'cl-progv "cl-macs" "\
d1b8746d
SM
490Bind SYMBOLS to VALUES dynamically in BODY.
491The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists.
492Each symbol in the first list is bound to the corresponding value in the
cee6efde 493second list (or to nil if VALUES is shorter than SYMBOLS); then the
d1b8746d
SM
494BODY forms are executed and their result is returned. This is much like
495a `let' form, except that the list of symbols can be computed at run-time.
496
03fef3e6 497\(fn SYMBOLS VALUES &rest BODY)" nil t)
d1b8746d 498
093c0257 499(put 'cl-progv 'lisp-indent-function '2)
b581bb5c 500
093c0257 501(autoload 'cl-flet "cl-macs" "\
d1b8746d 502Make temporary function definitions.
de7e2b36 503Like `cl-labels' but the definitions are not recursive.
d1b8746d 504
03fef3e6 505\(fn ((FUNC ARGLIST BODY...) ...) FORM...)" nil t)
d1b8746d 506
093c0257 507(put 'cl-flet 'lisp-indent-function '1)
b581bb5c 508
d5c6faf9
SM
509(autoload 'cl-flet* "cl-macs" "\
510Make temporary function definitions.
511Like `cl-flet' but the definitions can refer to previous ones.
512
513\(fn ((FUNC ARGLIST BODY...) ...) FORM...)" nil t)
514
515(put 'cl-flet* 'lisp-indent-function '1)
516
093c0257 517(autoload 'cl-labels "cl-macs" "\
d1b8746d 518Make temporary function bindings.
222fbb8b
GM
519The bindings can be recursive and the scoping is lexical, but capturing them
520in closures will only work if `lexical-binding' is in use.
d1b8746d 521
03fef3e6 522\(fn ((FUNC ARGLIST BODY...) ...) FORM...)" nil t)
d1b8746d 523
093c0257 524(put 'cl-labels 'lisp-indent-function '1)
b581bb5c 525
093c0257 526(autoload 'cl-macrolet "cl-macs" "\
d1b8746d 527Make temporary macro definitions.
093c0257 528This is like `cl-flet', but for macros instead of functions.
d1b8746d 529
03fef3e6 530\(fn ((NAME ARGLIST BODY...) ...) FORM...)" nil t)
d1b8746d 531
093c0257 532(put 'cl-macrolet 'lisp-indent-function '1)
b581bb5c 533
093c0257 534(autoload 'cl-symbol-macrolet "cl-macs" "\
d1b8746d
SM
535Make symbol macro definitions.
536Within the body FORMs, references to the variable NAME will be replaced
2ee3d7f0 537by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...).
d1b8746d 538
03fef3e6 539\(fn ((NAME EXPANSION) ...) FORM...)" nil t)
d1b8746d 540
093c0257 541(put 'cl-symbol-macrolet 'lisp-indent-function '1)
b581bb5c 542
093c0257 543(autoload 'cl-multiple-value-bind "cl-macs" "\
d1b8746d
SM
544Collect multiple return values.
545FORM must return a list; the BODY is then executed with the first N elements
546of this list bound (`let'-style) to each of the symbols SYM in turn. This
093c0257
SM
547is analogous to the Common Lisp `cl-multiple-value-bind' macro, using lists to
548simulate true multiple return values. For compatibility, (cl-values A B C) is
d1b8746d
SM
549a synonym for (list A B C).
550
03fef3e6 551\(fn (SYM...) FORM BODY)" nil t)
d1b8746d 552
093c0257 553(put 'cl-multiple-value-bind 'lisp-indent-function '2)
b581bb5c 554
093c0257 555(autoload 'cl-multiple-value-setq "cl-macs" "\
d1b8746d
SM
556Collect multiple return values.
557FORM must return a list; the first N elements of this list are stored in
558each of the symbols SYM in turn. This is analogous to the Common Lisp
093c0257
SM
559`cl-multiple-value-setq' macro, using lists to simulate true multiple return
560values. For compatibility, (cl-values A B C) is a synonym for (list A B C).
d1b8746d 561
03fef3e6 562\(fn (SYM...) FORM)" nil t)
d1b8746d 563
093c0257 564(put 'cl-multiple-value-setq 'lisp-indent-function '1)
b581bb5c 565
093c0257 566(autoload 'cl-locally "cl-macs" "\
0d6459df 567
d1b8746d 568
03fef3e6 569\(fn &rest BODY)" nil t)
d1b8746d 570
093c0257 571(autoload 'cl-the "cl-macs" "\
ba83908c
SM
572
573
03fef3e6 574\(fn TYPE FORM)" nil t)
ba83908c 575
093c0257 576(put 'cl-the 'lisp-indent-function '1)
b581bb5c 577
093c0257 578(autoload 'cl-declare "cl-macs" "\
7b41decb 579Declare SPECS about the current function while compiling.
1b5eaeb3 580For instance
0d6459df 581
093c0257 582 (cl-declare (warn 0))
1b5eaeb3 583
7b41decb
LMI
584will turn off byte-compile warnings in the function.
585See Info node `(cl)Declarations' for details.
d1b8746d 586
03fef3e6 587\(fn &rest SPECS)" nil t)
d1b8746d 588
093c0257 589(autoload 'cl-psetf "cl-macs" "\
d1b8746d 590Set PLACEs to the values VALs in parallel.
2ee3d7f0 591This is like `setf', except that all VAL forms are evaluated (in order)
d1b8746d
SM
592before assigning any PLACEs to the corresponding values.
593
03fef3e6 594\(fn PLACE VAL PLACE VAL ...)" nil t)
d1b8746d 595
093c0257 596(autoload 'cl-remf "cl-macs" "\
d1b8746d 597Remove TAG from property list PLACE.
2ee3d7f0 598PLACE may be a symbol, or any generalized variable allowed by `setf'.
d1b8746d
SM
599The form returns true if TAG was found and removed, nil otherwise.
600
03fef3e6 601\(fn PLACE TAG)" nil t)
d1b8746d 602
093c0257 603(autoload 'cl-shiftf "cl-macs" "\
d1b8746d 604Shift left among PLACEs.
093c0257 605Example: (cl-shiftf A B C) sets A to B, B to C, and returns the old A.
2ee3d7f0 606Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
d1b8746d 607
03fef3e6 608\(fn PLACE... VAL)" nil t)
d1b8746d 609
093c0257 610(autoload 'cl-rotatef "cl-macs" "\
d1b8746d 611Rotate left among PLACEs.
093c0257 612Example: (cl-rotatef A B C) sets A to B, B to C, and C to A. It returns nil.
2ee3d7f0 613Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
d1b8746d 614
03fef3e6 615\(fn PLACE...)" nil t)
d1b8746d 616
222fbb8b
GM
617(autoload 'cl-letf "cl-macs" "\
618Temporarily bind to PLACEs.
619This is the analogue of `let', but with generalized variables (in the
620sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
621VALUE, then the BODY forms are executed. On exit, either normally or
622because of a `throw' or error, the PLACEs are set back to their original
623values. Note that this macro is *not* available in Common Lisp.
624As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
625the PLACE is not modified before executing BODY.
626
627\(fn ((PLACE VALUE) ...) BODY...)" nil t)
628
629(put 'cl-letf 'lisp-indent-function '1)
630
631(autoload 'cl-letf* "cl-macs" "\
632Temporarily bind to PLACEs.
633Like `cl-letf' but where the bindings are performed one at a time,
634rather than all at the end (i.e. like `let*' rather than like `let').
635
636\(fn BINDINGS &rest BODY)" nil t)
637
638(put 'cl-letf* 'lisp-indent-function '1)
639
093c0257 640(autoload 'cl-callf "cl-macs" "\
d1b8746d
SM
641Set PLACE to (FUNC PLACE ARGS...).
642FUNC should be an unquoted function name. PLACE may be a symbol,
2ee3d7f0 643or any generalized variable allowed by `setf'.
d1b8746d 644
2ee3d7f0 645\(fn FUNC PLACE &rest ARGS)" nil t)
d1b8746d 646
093c0257 647(put 'cl-callf 'lisp-indent-function '2)
b581bb5c 648
093c0257 649(autoload 'cl-callf2 "cl-macs" "\
d1b8746d 650Set PLACE to (FUNC ARG1 PLACE ARGS...).
093c0257 651Like `cl-callf', but PLACE is the second argument of FUNC, not the first.
d1b8746d 652
03fef3e6 653\(fn FUNC ARG1 PLACE ARGS...)" nil t)
d1b8746d 654
093c0257 655(put 'cl-callf2 'lisp-indent-function '3)
b581bb5c 656
093c0257 657(autoload 'cl-defstruct "cl-macs" "\
d1b8746d 658Define a struct type.
c7dc1ac1
CY
659This macro defines a new data type called NAME that stores data
660in SLOTs. It defines a `make-NAME' constructor, a `copy-NAME'
661copier, a `NAME-p' predicate, and slot accessors named `NAME-SLOT'.
2ee3d7f0 662You can use the accessors to set the corresponding slots, via `setf'.
d1b8746d 663
c7dc1ac1 664NAME may instead take the form (NAME OPTIONS...), where each
685f87b0
SM
665OPTION is either a single keyword or (KEYWORD VALUE) where
666KEYWORD can be one of :conc-name, :constructor, :copier, :predicate,
667:type, :named, :initial-offset, :print-function, or :include.
c7dc1ac1
CY
668
669Each SLOT may instead take the form (SLOT SLOT-OPTS...), where
670SLOT-OPTS are keyword-value pairs for that slot. Currently, only
671one keyword is supported, `:read-only'. If this has a non-nil
2ee3d7f0 672value, that slot cannot be set via `setf'.
c7dc1ac1 673
03fef3e6 674\(fn NAME SLOTS...)" nil t)
d1b8746d 675
093c0257 676(put 'cl-defstruct 'doc-string-elt '2)
b581bb5c 677
972debf2
SM
678(put 'cl-defstruct 'lisp-indent-function '1)
679
093c0257 680(autoload 'cl-deftype "cl-macs" "\
c93d41ba 681Define NAME as a new data type.
093c0257 682The type name can then be used in `cl-typecase', `cl-check-type', etc.
c93d41ba 683
03fef3e6 684\(fn NAME ARGLIST &rest BODY)" nil t)
c93d41ba 685
093c0257 686(put 'cl-deftype 'doc-string-elt '3)
b581bb5c 687
093c0257 688(autoload 'cl-typep "cl-macs" "\
d1b8746d
SM
689Check that OBJECT is of type TYPE.
690TYPE is a Common Lisp-style type specifier.
691
692\(fn OBJECT TYPE)" nil nil)
693
093c0257 694(autoload 'cl-check-type "cl-macs" "\
d1b8746d
SM
695Verify that FORM is of type TYPE; signal an error if not.
696STRING is an optional description of the desired type.
697
03fef3e6 698\(fn FORM TYPE &optional STRING)" nil t)
d1b8746d 699
093c0257 700(autoload 'cl-assert "cl-macs" "\
d1b8746d
SM
701Verify that FORM returns non-nil; signal an error if not.
702Second arg SHOW-ARGS means to include arguments of FORM in message.
703Other args STRING and ARGS... are arguments to be passed to `error'.
704They are not evaluated unless the assertion fails. If STRING is
705omitted, a default message listing FORM itself is used.
706
03fef3e6 707\(fn FORM &optional SHOW-ARGS STRING &rest ARGS)" nil t)
d1b8746d 708
093c0257 709(autoload 'cl-define-compiler-macro "cl-macs" "\
d1b8746d
SM
710Define a compiler-only macro.
711This is like `defmacro', but macro expansion occurs only if the call to
712FUNC is compiled (i.e., not interpreted). Compiler macros should be used
713for optimizing the way calls to FUNC are compiled; the form returned by
714BODY should do the same thing as a call to the normal function called
715FUNC, though possibly more efficiently. Note that, like regular macros,
716compiler macros are expanded repeatedly until no further expansions are
717possible. Unlike regular macros, BODY can decide to \"punt\" and leave the
718original function call alone by declaring an initial `&whole foo' parameter
719and then returning foo.
720
03fef3e6 721\(fn FUNC ARGS &rest BODY)" nil t)
d1b8746d 722
093c0257 723(autoload 'cl-compiler-macroexpand "cl-macs" "\
0d6459df 724
d1b8746d
SM
725
726\(fn FORM)" nil nil)
727
093c0257 728(autoload 'cl-defsubst "cl-macs" "\
eb123b12
GM
729Define NAME as a function.
730Like `defun', except the function is automatically declared `inline',
731ARGLIST allows full Common Lisp conventions, and BODY is implicitly
093c0257 732surrounded by (cl-block NAME ...).
eb123b12 733
03fef3e6 734\(fn NAME ARGLIST [DOCSTRING] BODY...)" nil t)
eb123b12 735
2ee3d7f0
SM
736(put 'cl-defsubst 'lisp-indent-function '2)
737
71adb94b
SM
738(autoload 'cl--compiler-macro-adjoin "cl-macs" "\
739
740
741\(fn FORM A LIST &rest KEYS)" nil nil)
742
d1b8746d
SM
743;;;***
744\f
093c0257
SM
745;;;### (autoloads (cl-tree-equal cl-nsublis cl-sublis cl-nsubst-if-not
746;;;;;; cl-nsubst-if cl-nsubst cl-subst-if-not cl-subst-if cl-subsetp
747;;;;;; cl-nset-exclusive-or cl-set-exclusive-or cl-nset-difference
748;;;;;; cl-set-difference cl-nintersection cl-intersection cl-nunion
749;;;;;; cl-union cl-rassoc-if-not cl-rassoc-if cl-rassoc cl-assoc-if-not
750;;;;;; cl-assoc-if cl-assoc cl--adjoin cl-member-if-not cl-member-if
751;;;;;; cl-member cl-merge cl-stable-sort cl-sort cl-search cl-mismatch
752;;;;;; cl-count-if-not cl-count-if cl-count cl-position-if-not cl-position-if
753;;;;;; cl-position cl-find-if-not cl-find-if cl-find cl-nsubstitute-if-not
754;;;;;; cl-nsubstitute-if cl-nsubstitute cl-substitute-if-not cl-substitute-if
755;;;;;; cl-substitute cl-delete-duplicates cl-remove-duplicates cl-delete-if-not
756;;;;;; cl-delete-if cl-delete cl-remove-if-not cl-remove-if cl-remove
e7c1b6ef 757;;;;;; cl-replace cl-fill cl-reduce) "cl-seq" "cl-seq.el" "4c1e1191e82dc8d5449a5ec4d59efc10")
d1b8746d
SM
758;;; Generated autoloads from cl-seq.el
759
093c0257 760(autoload 'cl-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
093c0257 767(autoload 'cl-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
093c0257 774(autoload 'cl-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
093c0257 782(autoload 'cl-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
093c0257 791(autoload 'cl-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
093c0257 800(autoload 'cl-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
093c0257 809(autoload 'cl-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
093c0257 817(autoload 'cl-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
093c0257 825(autoload 'cl-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
093c0257 833(autoload 'cl-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
093c0257 840(autoload 'cl-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
093c0257 847(autoload 'cl-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
093c0257 856(autoload 'cl-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
093c0257 865(autoload 'cl-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
093c0257 874(autoload 'cl-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
093c0257 882(autoload 'cl-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
093c0257 890(autoload 'cl-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
093c0257 898(autoload 'cl-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
093c0257 906(autoload 'cl-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
093c0257 914(autoload 'cl-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
093c0257 922(autoload 'cl-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
093c0257 930(autoload 'cl-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
093c0257 938(autoload 'cl-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
093c0257 946(autoload 'cl-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
093c0257 953(autoload 'cl-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
093c0257 960(autoload 'cl-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
093c0257 967(autoload 'cl-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
093c0257 976(autoload 'cl-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
093c0257 985(autoload 'cl-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
093c0257 993(autoload 'cl-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
093c0257 1001(autoload 'cl-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
093c0257 1010(autoload 'cl-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
d9857e53
SM
1018(put 'cl-member 'compiler-macro #'cl--compiler-macro-member)
1019
093c0257 1020(autoload 'cl-member-if "cl-seq" "\
d1b8746d
SM
1021Find the first item satisfying PREDICATE in LIST.
1022Return the sublist of LIST whose car matches.
1023
1024Keywords supported: :key
1025
1026\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1027
093c0257 1028(autoload 'cl-member-if-not "cl-seq" "\
d1b8746d
SM
1029Find the first item not satisfying PREDICATE in LIST.
1030Return the sublist of LIST whose car matches.
1031
1032Keywords supported: :key
1033
1034\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1035
4735906a 1036(autoload 'cl--adjoin "cl-seq" "\
cf3304e1 1037
d1b8746d
SM
1038
1039\(fn CL-ITEM CL-LIST &rest CL-KEYS)" nil nil)
1040
093c0257 1041(autoload 'cl-assoc "cl-seq" "\
d1b8746d
SM
1042Find the first item whose car matches ITEM in LIST.
1043
1044Keywords supported: :test :test-not :key
1045
1046\(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1047
d9857e53
SM
1048(put 'cl-assoc 'compiler-macro #'cl--compiler-macro-assoc)
1049
093c0257 1050(autoload 'cl-assoc-if "cl-seq" "\
d1b8746d
SM
1051Find the first item whose car satisfies PREDICATE in LIST.
1052
1053Keywords supported: :key
1054
1055\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1056
093c0257 1057(autoload 'cl-assoc-if-not "cl-seq" "\
d1b8746d
SM
1058Find the first item whose car does not satisfy PREDICATE in LIST.
1059
1060Keywords supported: :key
1061
1062\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1063
093c0257 1064(autoload 'cl-rassoc "cl-seq" "\
d1b8746d
SM
1065Find the first item whose cdr matches ITEM in LIST.
1066
1067Keywords supported: :test :test-not :key
1068
1069\(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1070
093c0257 1071(autoload 'cl-rassoc-if "cl-seq" "\
d1b8746d
SM
1072Find the first item whose cdr satisfies PREDICATE in LIST.
1073
1074Keywords supported: :key
1075
1076\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1077
093c0257 1078(autoload 'cl-rassoc-if-not "cl-seq" "\
d1b8746d
SM
1079Find the first item whose cdr does not satisfy PREDICATE in LIST.
1080
1081Keywords supported: :key
1082
1083\(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1084
093c0257 1085(autoload 'cl-union "cl-seq" "\
d1b8746d 1086Combine LIST1 and LIST2 using a set-union operation.
16b737dc 1087The resulting list contains all items that appear in either LIST1 or LIST2.
d1b8746d
SM
1088This is a non-destructive function; it makes a copy of the data if necessary
1089to avoid corrupting the original LIST1 and LIST2.
1090
1091Keywords supported: :test :test-not :key
1092
1093\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1094
093c0257 1095(autoload 'cl-nunion "cl-seq" "\
d1b8746d 1096Combine LIST1 and LIST2 using a set-union operation.
16b737dc 1097The resulting list contains all items that appear in either LIST1 or LIST2.
d1b8746d
SM
1098This is a destructive function; it reuses the storage of LIST1 and LIST2
1099whenever possible.
1100
1101Keywords supported: :test :test-not :key
1102
1103\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1104
093c0257 1105(autoload 'cl-intersection "cl-seq" "\
d1b8746d 1106Combine LIST1 and LIST2 using a set-intersection operation.
16b737dc 1107The resulting list contains all items that appear in both LIST1 and LIST2.
d1b8746d
SM
1108This is a non-destructive function; it makes a copy of the data if necessary
1109to avoid corrupting the original LIST1 and LIST2.
1110
1111Keywords supported: :test :test-not :key
1112
1113\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1114
093c0257 1115(autoload 'cl-nintersection "cl-seq" "\
d1b8746d 1116Combine LIST1 and LIST2 using a set-intersection operation.
16b737dc 1117The resulting list contains all items that appear in both LIST1 and LIST2.
d1b8746d
SM
1118This is a destructive function; it reuses the storage of LIST1 and LIST2
1119whenever possible.
1120
1121Keywords supported: :test :test-not :key
1122
1123\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1124
093c0257 1125(autoload 'cl-set-difference "cl-seq" "\
d1b8746d 1126Combine LIST1 and LIST2 using a set-difference operation.
16b737dc 1127The resulting list contains all items that appear in LIST1 but not LIST2.
d1b8746d
SM
1128This is a non-destructive function; it makes a copy of the data if necessary
1129to avoid corrupting the original LIST1 and LIST2.
1130
1131Keywords supported: :test :test-not :key
1132
1133\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1134
093c0257 1135(autoload 'cl-nset-difference "cl-seq" "\
d1b8746d 1136Combine LIST1 and LIST2 using a set-difference operation.
16b737dc 1137The resulting list contains all items that appear in LIST1 but not LIST2.
d1b8746d
SM
1138This is a destructive function; it reuses the storage of LIST1 and LIST2
1139whenever possible.
1140
1141Keywords supported: :test :test-not :key
1142
1143\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1144
093c0257 1145(autoload 'cl-set-exclusive-or "cl-seq" "\
d1b8746d 1146Combine LIST1 and LIST2 using a set-exclusive-or operation.
16b737dc 1147The resulting list contains all items appearing in exactly one of LIST1, LIST2.
d1b8746d
SM
1148This is a non-destructive function; it makes a copy of the data if necessary
1149to avoid corrupting the original LIST1 and LIST2.
1150
1151Keywords supported: :test :test-not :key
1152
1153\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1154
093c0257 1155(autoload 'cl-nset-exclusive-or "cl-seq" "\
d1b8746d 1156Combine LIST1 and LIST2 using a set-exclusive-or operation.
16b737dc 1157The resulting list contains all items appearing in exactly one of LIST1, LIST2.
d1b8746d
SM
1158This is a destructive function; it reuses the storage of LIST1 and LIST2
1159whenever possible.
1160
1161Keywords supported: :test :test-not :key
1162
1163\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1164
093c0257 1165(autoload 'cl-subsetp "cl-seq" "\
d1b8746d
SM
1166Return true if LIST1 is a subset of LIST2.
1167I.e., if every element of LIST1 also appears in LIST2.
1168
1169Keywords supported: :test :test-not :key
1170
1171\(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1172
093c0257 1173(autoload 'cl-subst-if "cl-seq" "\
d1b8746d
SM
1174Substitute NEW for elements matching PREDICATE in TREE (non-destructively).
1175Return a copy of TREE with all matching elements replaced by NEW.
1176
1177Keywords supported: :key
1178
1179\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1180
093c0257 1181(autoload 'cl-subst-if-not "cl-seq" "\
d1b8746d
SM
1182Substitute NEW for elts not matching PREDICATE in TREE (non-destructively).
1183Return a copy of TREE with all non-matching elements replaced by NEW.
1184
1185Keywords supported: :key
1186
1187\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1188
093c0257 1189(autoload 'cl-nsubst "cl-seq" "\
d1b8746d
SM
1190Substitute NEW for OLD everywhere in TREE (destructively).
1191Any element of TREE which is `eql' to OLD is changed to NEW (via a call
1192to `setcar').
1193
1194Keywords supported: :test :test-not :key
1195
1196\(fn NEW OLD TREE [KEYWORD VALUE]...)" nil nil)
1197
093c0257 1198(autoload 'cl-nsubst-if "cl-seq" "\
d1b8746d
SM
1199Substitute NEW for elements matching PREDICATE in TREE (destructively).
1200Any element of TREE which matches is changed to NEW (via a call to `setcar').
1201
1202Keywords supported: :key
1203
1204\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1205
093c0257 1206(autoload 'cl-nsubst-if-not "cl-seq" "\
d1b8746d
SM
1207Substitute NEW for elements not matching PREDICATE in TREE (destructively).
1208Any element of TREE which matches is changed to NEW (via a call to `setcar').
1209
1210Keywords supported: :key
1211
1212\(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1213
093c0257 1214(autoload 'cl-sublis "cl-seq" "\
d1b8746d
SM
1215Perform substitutions indicated by ALIST in TREE (non-destructively).
1216Return a copy of TREE with all matching elements replaced.
1217
1218Keywords supported: :test :test-not :key
1219
1220\(fn ALIST TREE [KEYWORD VALUE]...)" nil nil)
1221
093c0257 1222(autoload 'cl-nsublis "cl-seq" "\
d1b8746d
SM
1223Perform substitutions indicated by ALIST in TREE (destructively).
1224Any matching element of TREE is changed via a call to `setcar'.
1225
1226Keywords supported: :test :test-not :key
1227
1228\(fn ALIST TREE [KEYWORD VALUE]...)" nil nil)
1229
093c0257 1230(autoload 'cl-tree-equal "cl-seq" "\
d1b8746d
SM
1231Return t if trees TREE1 and TREE2 have `eql' leaves.
1232Atoms are compared by `eql'; cons cells are compared recursively.
1233
1234Keywords supported: :test :test-not :key
1235
1236\(fn TREE1 TREE2 [KEYWORD VALUE]...)" nil nil)
1237
1238;;;***
1239\f
1240;; Local Variables:
1241;; version-control: never
1242;; no-byte-compile: t
1243;; no-update-autoloads: t
e97a42c1 1244;; coding: utf-8
d1b8746d 1245;; End:
d1b8746d 1246;;; cl-loaddefs.el ends here