Skip to content

Instantly share code, notes, and snippets.

@xhh
Last active March 1, 2020 13:07
Show Gist options
  • Save xhh/b1096cbfb434b32b51e60961f8b5c601 to your computer and use it in GitHub Desktop.
Save xhh/b1096cbfb434b32b51e60961f8b5c601 to your computer and use it in GitHub Desktop.
some clojure code
(defmacro comp*
"The left-to-right version of comp.
Takes a set of functions and returns a fn that is the composition
of those fns. The returned fn takes a variable number of args,
applies the leftmost of fns to the args, the next
fn (left-to-right) to the result, etc."
[& fns]
`(comp ~@(reverse fns)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment