Re: Where do I find javadoc for clojure interfaces?

2015-10-03 Thread Stuart Sierra
Interfaces like ISeq are internal details of Clojure's implementation. They're not part of the public API, so there is no guarantee that they won't change in future releases. –S On Thursday, October 1, 2015 at 4:59:12 AM UTC-4, crocket wrote: > > http://clojure.github.io/clojure/javadoc/

Re: Where do I find javadoc for clojure interfaces?

2015-10-03 Thread Daniel Compton
This has come up before https://groups.google.com/forum/#!topic/clojure/2ZHYa-Bv8UU. Alex's statement on the matter: > The Clojure internal Java interfaces are certainly intended to allow library builders to create useful stuff

Re: Where do I find javadoc for clojure interfaces?

2015-10-01 Thread Phillip Lord
Probably because they are not documented. This is the source code for ISeq in total /** * A persistent, functional, sequence interface * * ISeqs are immutable values, i.e. neither first(), nor rest() changes * or invalidates the ISeq */ public interface ISeq extends IPersistentCollection {

Where do I find javadoc for clojure interfaces?

2015-10-01 Thread crocket
http://clojure.github.io/clojure/javadoc/ doesn't expost interfaces like clojure.lang.ISeq, so when I refer to such interfaces, I have to download clojure javadoc from maven. I'd like to refer to those interface on web browsers. Why are they not exposed on the web? -- You received this