tvl-depot/lisp/klatre/package.lisp
sterni f60d174591 feat(klatre): expose utility to format dot time offset
Turns out this is an annoying thingy you sometimes to implement
independently from formatting an entire timestamp, so we expose it for
reuse.

Change-Id: I11de2823eb03849ea78fc79e2f546e413882930f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3163
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
Reviewed-by: tazjin <mail@tazj.in>
2021-05-29 19:13:11 +00:00

16 lines
362 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 #:format-dottime-offset
;; Function utilities
#:partial))