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>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			362 B
		
	
	
	
		
			Common Lisp
		
	
	
	
	
	
			
		
		
	
	
			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))
 |