2020-07-22 04:37:45 +02:00
|
|
|
(defpackage #:klatre
|
|
|
|
(:documentation "Grab-bag utility library for Common Lisp")
|
|
|
|
(:use #:cl)
|
|
|
|
(:export
|
|
|
|
;; Miscellanious utilities
|
|
|
|
#:comment #:posp
|
|
|
|
|
|
|
|
;; Sequence functions
|
2020-07-22 04:07:26 +02:00
|
|
|
#:chunk-list #:mapconcat
|
|
|
|
|
|
|
|
;; String handling
|
2020-07-22 01:36:21 +02:00
|
|
|
#:+dottime-format+ #:format-dottime
|
2020-07-29 00:29:30 +02:00
|
|
|
#:try-parse-integer
|
|
|
|
|
|
|
|
;; Function utilities
|
|
|
|
#:partial))
|