Skip to content

Instantly share code, notes, and snippets.

@w01fe
Forked from davegolland/double-arrow.clj
Last active August 29, 2015 14:02
Show Gist options
  • Save w01fe/febb4a8a38db615370c7 to your computer and use it in GitHub Desktop.
Save w01fe/febb4a8a38db615370c7 to your computer and use it in GitHub Desktop.
(defmacro ->>
([x form] `(~@(if (seq form) form [form]) ~x))
([x form & more] `(->> (->> ~x ~form) ~@more)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment