Skip to content

Instantly share code, notes, and snippets.

@bonkydog
Created January 25, 2014 20:08
Show Gist options
  • Select an option

  • Save bonkydog/8622706 to your computer and use it in GitHub Desktop.

Select an option

Save bonkydog/8622706 to your computer and use it in GitHub Desktop.
Show methods on an object
(defn show-methods [x] (filter #(not (re-find #"^(__|const)" (str %))) (map :name (:members (clojure.reflect/reflect x)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment