What's Quickutil?
Quickutil is a completely new way for organizing and distributing Common Lisp utilities. Read about why we made it or download the beta and try it for yourself.
-
1. Install Quickutil
> (ql:quickload :quickutil)
-
2. Load Utilities
> (qtlc:utilize :utilities '(:iota :riffle) :categories '(:alexandria) :symbols '(:split-sequence-if-not))
-
3. Use Them
> (qtl:riffle (qtl:iota 5) '--) (0 -- 1 -- 2 -- 3 -- 4) > (qtl:split-sequence-if-not #'alphanumericp "3/14/1592") ("3" "14" "1592")