Created
January 21, 2015 17:55
-
-
Save levand/11b10cd79941bf299c40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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