Skip to content

Instantly share code, notes, and snippets.

@danlentz
Forked from pingles/protocol.clj
Created February 18, 2014 05:39
Show Gist options
  • Save danlentz/9065228 to your computer and use it in GitHub Desktop.
Save danlentz/9065228 to your computer and use it in GitHub Desktop.
(defprotocol ToClojure
(to-clojure [x]))
(extend-protocol ToClojure
List (to-clojure [xs] (map to-clojure xs))
RecommendedItem (to-clojure [x] {:item (.getItemID x)
:value (.getValue x)}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment