c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
16 lines
338 B
Common Lisp
16 lines
338 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
|
|
|
|
;; String handling
|
|
#:+dottime-format+ #:format-dottime
|
|
#:try-parse-integer
|
|
|
|
;; Function utilities
|
|
#:partial))
|