Skip to content

Instantly share code, notes, and snippets.

@levand
Created January 21, 2015 17:55
Show Gist options
  • Save levand/11b10cd79941bf299c40 to your computer and use it in GitHub Desktop.
Save levand/11b10cd79941bf299c40 to your computer and use it in GitHub Desktop.
(deftype MyCountable [delegate]
#+clj clojure.lang.Counted #+cljs ICounted
#+clj (count [_] (.count delegate))
#+cljs (-count [_] (-count delegate)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment