Re: `extends?`, `class` and `type` on ClojureScript

2012-02-19 Thread Shantanu Kumar
I noticed that `extends?`, `class` and `type` are not implemented on ClojureScript (yet) – will they eventually be implemented? Is there a way beside these to determine if a reified object implements a certain protocol? Shantanu class is a Java-ism, probably doesn't make sense.

Re: `extends?`, `class` and `type` on ClojureScript

2012-02-19 Thread Dave Ray
Is satisfies? sufficient for your needs? It seems to be implemented in ClojureScript and is, I think, the official way to check whether and object implements a protocol. Dave On Sun, Feb 19, 2012 at 9:26 AM, Shantanu Kumar kumar.shant...@gmail.com wrote: I noticed that `extends?`, `class` and

Re: `extends?`, `class` and `type` on ClojureScript

2012-02-19 Thread Shantanu Kumar
On Feb 19, 7:36 pm, Dave Ray dave...@gmail.com wrote: Is satisfies? sufficient for your needs? It seems to be implemented in ClojureScript and is, I think, the official way to check whether and object implements a protocol. It is and it works for both Clojure and CLJS. Thank you! Shantanu

`extends?`, `class` and `type` on ClojureScript

2012-01-13 Thread Shantanu Kumar
Hi, I noticed that `extends?`, `class` and `type` are not implemented on ClojureScript (yet) – will they eventually be implemented? Is there a way beside these to determine if a reified object implements a certain protocol? Shantanu -- You received this message because you are subscribed to

Re: `extends?`, `class` and `type` on ClojureScript

2012-01-13 Thread David Nolen
On Fri, Jan 13, 2012 at 3:36 PM, Shantanu Kumar kumar.shant...@gmail.comwrote: Hi, I noticed that `extends?`, `class` and `type` are not implemented on ClojureScript (yet) – will they eventually be implemented? Is there a way beside these to determine if a reified object implements a certain