-
-
Save amalloy/891697 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defmacro when-lets [bindings & body] | |
(reduce (fn [acc tstform] | |
`(when-let ~tstform ~acc)) | |
(cons 'do body) | |
(reverse (map vec (partition 2 bindings))))) | |
(when-lets [n (first sizes) | |
s (seq coll)] | |
(cons (take n coll) | |
(partitions (next sizes) (drop n coll))))) | |
(when-let [n (first sizes)] | |
(when-let [s (seq coll)] | |
(do (cons (take n coll) (partitions (next sizes) (drop n coll)))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment