Created
November 18, 2024 16:56
-
-
Save cgrand/63833a8a1f3983e988a1b9c77d4ea4d9 to your computer and use it in GitHub Desktop.
->> and -> asymmetries
This file contains 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
;; cond-> inside -> is fine | |
(-> input | |
(dothis ...) | |
(cond-> test (maybe do this also ...)) | |
(dothat ...)) | |
;; cond->> inside ->> isn't fine | |
(->> input | |
(dothis ...) | |
(cond->> test (maybe do this also ...)) ; the input seq comes last because of ->> but cond->> expects it first. | |
(dothat ...)) | |
;; cond->>> ? | |
(defmacro cond->>> [& forms+expr] | |
`(cond->> ~(last forms+expr) ~@(butlast forms+expr))) | |
;; A bit in the same vein: you can nest ->> inside -> but not the other way round | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment