Skip to content

Instantly share code, notes, and snippets.

@MayDaniel
Created October 17, 2010 16:37
Show Gist options
  • Select an option

  • Save MayDaniel/631007 to your computer and use it in GitHub Desktop.

Select an option

Save MayDaniel/631007 to your computer and use it in GitHub Desktop.
(defn partialr [f & r-args]
(fn [& l-args] (apply f (concat l-args r-args))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment