Skip to content

Instantly share code, notes, and snippets.

@arohner
Created August 5, 2010 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arohner/510026 to your computer and use it in GitHub Desktop.
Save arohner/510026 to your computer and use it in GitHub Desktop.
(defn ||
"unarrow. Ignores the first argument, then calls (apply f args). Returns the first argument, so arrowing can continue"
[in f & args]
(apply f args)
in)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment