Skip to content

Instantly share code, notes, and snippets.

@raek
Created July 18, 2011 17:40
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 raek/1090133 to your computer and use it in GitHub Desktop.
Save raek/1090133 to your computer and use it in GitHub Desktop.
(defn name-this-function [f error? success-fn error-fn]
(fn [& args]
(let [res (apply f args)]
(if (error? res)
(apply error-fn args)
(success-fn res)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment