source: trunk/j/src/org/armedbear/lisp/autoloads.lisp @ 3477

Last change on this file since 3477 was 3477, checked in by piso, 20 years ago

RATIONAL
RATIONALIZE

File size: 3.1 KB
Line 
1;;; autoloads.lisp
2;;;
3;;; Copyright (C) 2003 Peter Graves
4;;; $Id: autoloads.lisp,v 1.11 2003-08-24 13:35:44 piso Exp $
5;;;
6;;; This program is free software; you can redistribute it and/or
7;;; modify it under the terms of the GNU General Public License
8;;; as published by the Free Software Foundation; either version 2
9;;; of the License, or (at your option) any later version.
10;;;
11;;; This program is distributed in the hope that it will be useful,
12;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with this program; if not, write to the Free Software
18;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20(in-package "SYSTEM")
21
22(autoload '(digit-char-p alphanumericp
23            char/= char< char> char<= char>=
24            char-not-equal)
25          "chars.lisp")
26(autoload '(string-upcase string-downcase string-capitalize
27            nstring-upcase nstring-downcase nstring-capitalize
28            string= string/= string-equal string-not-equal
29            string< string>
30            string<= string>=
31            string-lessp string-greaterp
32            string-not-lessp string-not-greaterp)
33          "strings.lisp")
34(autoload '(remprop getf get-properties copy-symbol) "symbol.lisp")
35(autoload '(open parse-integer))
36(autoload '(sort merge) "sort.lisp")
37(autoload 'tree-equal)
38(autoload 'make-hash-table)
39(autoload 'documentation)
40(autoload 'list-length)
41(autoload 'copy-list)
42(autoload 'revappend)
43(autoload '(butlast nbutlast) "butlast.lisp")
44(autoload 'ldiff)
45(autoload '(subst subst-if subst-if-not nsubst nsubst-if nsubst-if-not)
46          "subst.lisp")
47(autoload '(sublis nsublis) "sublis.lisp")
48(autoload '(member-if member-if-not) "member-if.lisp")
49(autoload 'tailp)
50(autoload 'adjoin)
51(autoload '(union nunion
52            intersection nintersection
53            set-difference nset-difference
54            set-exclusive-or nset-exclusive-or
55            subsetp)
56          "sets.lisp")
57(autoload '(assoc assoc-if assoc-if-not rassoc rassoc-if rassoc-if-not
58            acons pairlis copy-alist)
59          "assoc.lisp")
60(autoload '(mapc mapcan mapl maplist mapcon) "map1.lisp")
61(autoload 'make-sequence)
62(autoload '(copy-seq fill replace))
63(autoload '(map map-into))
64(autoload 'reduce)
65(autoload '(delete delete-if delete-if-not) "delete.lisp")
66(autoload '(remove remove-if remove-if-not) "remove.lisp")
67(autoload '(remove-duplicates delete-duplicates))
68(autoload '(substitute substitute-if substitute-if-not) "substitute.lisp")
69(autoload '(nsubstitute nsubstitute-if nsubstitute-if-not) "nsubstitute.lisp")
70(autoload '(position position-if position-if-not find find-if find-if-not)
71          "find.lisp")
72(autoload '(count count-if count-if-not) "count.lisp")
73(autoload '(mismatch search))
74(autoload 'make-string)
75(autoload 'make-pathname)
76(autoload '(floor ceiling round rem ftruncate ffloor fceiling fround
77            rational rationalize)
78          "numbers.lisp")
Note: See TracBrowser for help on using the repository browser.