r5284: *** empty log message ***
[kmrcl.git] / package.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          package.lisp
6 ;;;; Purpose:       Package definition for kmrcl package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: package.lisp,v 1.49 2003/07/11 06:58:32 kevin Exp $
11 ;;;;
12 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; KMRCL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (in-package #:cl-user)
20
21 (defpackage #:kmrcl
22   (:nicknames #:kl)
23   (:use #:cl)
24   (:export
25    #:ensure-integer
26    #:mklist
27    #:filter
28    #:appendnew
29    #:memo-proc
30    #:memoize
31    #:defun-memo
32    #:_f
33    #:compose
34    #:until
35    #:while
36    #:for
37
38    ;; strings.lisp
39    #:mapappend
40    #:mapcar-append-string
41    #:mapcar2-append-string
42    #:position-char
43    #:position-not-char
44    #:delimited-string-to-list
45    #:string-delimited-string-to-list
46    #:list-to-delimited-string
47    #:prefixed-fixnum-string
48    #:integer-string
49    #:fast-string-search
50    #:string-to-list-skip-delimiter
51    #:string-starts-with
52    #:count-string-char
53    #:count-string-char-if
54    #:hexchar
55    #:escape-uri-field
56    #:unescape-uri-field
57    #:non-alphanumericp
58    #:random-string
59    #:first-char
60    #:last-char
61    #:ensure-string
62    #:string-right-trim-one-char
63    
64    #:flatten
65
66    ;; io.lisp
67    #:indent-spaces
68    #:indent-html-spaces
69    #:print-n-chars
70    #:print-n-strings
71    #:print-list
72    #:print-rows
73    #:write-fixnum
74    #:file-subst
75    #:stream-subst
76
77    ;; lists.lisp
78    #:remove-tree-if
79    #:find-tree
80    #:with-each-file-line
81    #:with-each-stream-line
82    #:remove-keyword
83    #:remove-keywords
84    #:append-sublists
85    #:alist-elem-p
86    #:alistp
87    #:get-alist
88    #:update-alist
89    #:alist-plist
90    #:plist-alist
91    #:update-plist
92    #:get-plist
93
94    ;; seq.lisp
95    #:nsubseq
96    
97    ;; math.lisp
98    #:ensure-integer
99    
100    ;; macros.lisp
101    #:time-iterations
102    #:in
103    #:mean
104    #:with-gensyms
105    #:let-if
106    #:let-when
107    #:aif
108    #:awhen
109    #:awhile
110    #:aand
111    #:acond
112    #:alambda
113    #:it
114    #:mac
115    #:mv-bind
116    
117    ;; files.lisp
118    #:print-file-contents
119    #:read-file-to-string
120    #:read-file-to-strings
121    
122    ;; strings.lisp
123    #:string-append
124    #:count-string-words
125    #:substitute-string-for-char
126    #:string-trim-last-character
127    #:nstring-trim-last-character
128    #:string-hash
129    #:string-not-null?
130    #:whitespace?
131    #:not-whitespace?
132    #:string-ws?
133    #:string-invert
134    #:escape-xml-string
135    #:make-usb8-array
136    #:usb8-array-to-string
137    #:string-to-usb8-array
138    #:substitute-chars-strings
139    #:add-sql-quotes
140    #:escape-backslashes
141    #:concat-separated-strings
142    #:print-separated-strings
143    
144    ;; symbols.lisp
145    #:ensure-keyword
146    #:concat-symbol
147    #:concat-symbol-pkg
148    #:show
149    #:show-variables
150    #:show-functions
151    
152    ;; From attrib-class.lisp
153    #:attributes-class
154    #:slot-attribute
155    #:slot-attributes
156
157    #:generalized-equal
158
159    ;; From buffered input
160    
161    #:make-fields-buffer
162    #:read-buffered-fields
163    
164    ;; From datetime.lisp
165    #:pretty-date
166    #:date-string
167    #:print-float-units
168    #:print-seconds
169    
170    ;; From random.lisp
171    #:seed-random-generator
172    #:random-choice
173    
174    ;; From repl.lisp
175    #:make-repl
176    #:init/repl
177    
178    ;; From web-utils
179    #:*base-url*
180    #:base-url!
181    #:make-url
182    #:*standard-html-header*
183    #:*standard-xhtml-header*
184    #:*standard-xml-header*
185    #:user-agent-ie-p
186    #:decode-uri-query-string
187    
188    ;; From xml-utils
189    #:wrap-with-xml
190    #:xml-tag-contents
191    #:positions-xml-tag-contents
192    #:xml-cdata
193    #:write-xml-cdata
194    
195    ;; From console
196    #:*console-msgs*
197    #:cmsg
198    #:cmsg-c
199    #:cmsg-add
200    #:cmsg-remove
201    #:fixme
202
203    ;; byte-stream
204    #:make-binary-array-output-stream
205    #:get-output-stream-data
206    #:dump-output-stream-data
207    #:make-byte-array-input-stream
208
209    ;; sockets.lisp
210    #:make-active-socket
211    #:close-active-socket
212    
213    ;; listener.lisp
214    #:init/listener
215    #:stop-all/listener
216    #:listener
217    ))
218
219
220