repo.or.cz
/
biolisp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
create sql module.
[biolisp.git]
/
lambda-utils
/
packages.lisp
blob
52a90d8689f7a017d80afeca3b317cc99dec34eb
1
(
defpackage
:
lambda-utils
2
(:
nicknames
:
lutil
)
3
(:
use
:
cl
:
cl-utilities
:
flexi-streams
:
gzip-stream
)
4
(:
export
5
;; abrev
6
mvbind
7
;; String
8
join
9
split-sequence-array
10
string-tokens
11
puts
12
;; PAIP
13
mappend
14
;; onlisp
15
rfind-if
16
rfind
17
18
;;list
19
list-partition
20
21
;; IO
22
each-line
23
def-input-fun
24
def-output-fun
25
slurp
26
colect-lines
27
redirect
28
29
;; Mime
30
mime-type
31
typed-open
32
with-open-typed-file
33
34
;; numbers
35
na-p
36
sq
37
;; vector
38
dovector
39
doindex
40
;; Print-head
41
print-head
42
;; Ext
43
defsubst
44
defcustom
45
defconst
46
map-in
47
gc
48
quit
49
+
eof
+
50
eof-p
51
remove-plist
52
;; Shell
53
run-prog
54
exec-prog
55
exec-prog-l
56
getenv
57
pipe-output
58
pipe-input
59
close-pipe
60
with-open-pipe
61
))
62