25 lines
475 B
Common Lisp
25 lines
475 B
Common Lisp
;;;; package.lisp
|
|
|
|
(defpackage #:kutils
|
|
(:use #:cl)
|
|
(:export #:mkstr ; On Lisp utilities
|
|
#:symb
|
|
#:group
|
|
#:flatten
|
|
#:compose
|
|
#:defmacro! ; Let Over Lambda utilities
|
|
#:join ; My utilities
|
|
#:build-list
|
|
#:partial
|
|
#:macroexpand-n
|
|
#:mksymb
|
|
#:mkkw
|
|
#:defclass!
|
|
#:defconstructor
|
|
#:enable-hash-table-reader
|
|
#:hashkeys
|
|
#:sethash
|
|
#:hash-table-to-alist
|
|
#:alist-to-hash-table
|
|
))
|