Skip to content

Instantly share code, notes, and snippets.

@cgrand
Created November 18, 2024 16:56
Show Gist options
  • Save cgrand/63833a8a1f3983e988a1b9c77d4ea4d9 to your computer and use it in GitHub Desktop.
Save cgrand/63833a8a1f3983e988a1b9c77d4ea4d9 to your computer and use it in GitHub Desktop.
->> and -> asymmetries
;; 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