about summary refs log tree commit diff
path: root/lisp/klatre/package.lisp
blob: b5f574fa16c6481a5ed3219f274fdac40f5fd814 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
(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))