(defprotocol IAnimal "IAnimal"
(report [o]
(println (type o) " reporting.\n")
(inner-report o)
(println (type o) " out.\n")))
(defrecord Dog [] IAnimal
(inner-report [o]
(println "Woof Woof.\n")))
(defrecord Cat [] IAnimal
(inner-report [o]
(println "Meow Meow.\n")))
(defrecord Vampire [] IAnimal
(inner-report [o]
(println "I don't sparkle.\n")))
Now, I would like it to output:
Dog reporting.
Woof Woof.
Dog out.
Cat reporting.
Meow Meow.
Cat out.
Vampire reporting.
I don't sparkle.
Vampire out.
Unfortuantely, this does not happen since the above code does not compile. What is the best way to achieve "this" ?
Where by "this", I mean I have some function that I want to be part of a protocol, I want to have one implementation of it for all records, and I want this functino to have access to specialized functions that records implement.
Thanks!
(What is the clojure way of doing this?)
protocols, as this can be as simple as composing functions – Ankur Nov 18 '12 at 7:07