Skip to content

Instantly share code, notes, and snippets.

@cemerick
Created October 4, 2010 10:55
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 cemerick/0b4b6b437360b3e2f2e0 to your computer and use it in GitHub Desktop.
Save cemerick/0b4b6b437360b3e2f2e0 to your computer and use it in GitHub Desktop.
(defmacro methodfn
[obj method arity]
(let [args (->> (repeatedly gensym)
(take arity)
vec)]
`(fn ~args
(. ~obj ~method ~@args))))
(apply (methodfn (StringBuffer.) append 3) ["fooey" 0 3])
=> #<StringBuffer foo>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment