10 lines
214 B
Common Lisp
10 lines
214 B
Common Lisp
|
(defpackage #:klatre
|
||
|
(:documentation "Grab-bag utility library for Common Lisp")
|
||
|
(:use #:cl)
|
||
|
(:export
|
||
|
;; Miscellanious utilities
|
||
|
#:comment #:posp
|
||
|
|
||
|
;; Sequence functions
|
||
|
#:chunk-list #:mapconcat))
|