Re: ClojureScript sequence implementation does not print

2016-03-05 Thread William la Forge
I found what I needed. In cljs.core we have this (extend-protocol IPrintWithWriter ...) Which defines how to print various sequences. On Friday, March 4, 2016 at 8:07:29 PM UTC-5, William la Forge wrote: > > I've implemented sequences in Clojure with no problems. But I'm a lot > weaker when

ClojureScript sequence implementation does not print

2016-03-04 Thread William la Forge
I've implemented sequences in Clojure with no problems. But I'm a lot weaker when it comes to clojurescript! When I create an instance of my own sequence type, CountedSequence, and try to print it, all I get is #object[durable.CountedSequence.CountedSequence] Here's the code: https://github.