开发者

clojure.lang, etc. api [closed]

开发者 https://www.devze.com 2023-01-19 13:46 出处:网络
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendatio开发者_C百科ns for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 4 years ago.

Improve this question

Are the JavaDocs for clojure.lang, etc. available online? Do I need to build it myself from the Clojure source?

Thanks.


if you want descriptions for functions and even examples, visit ClojureDocs

you can even contribute ;)


Javadocs don't exist, per se. If you look at the Java source code, it's very sparsely documented. Certainly you could generate a skeleton yourself, but it probably wouldn't be all that useful anyway as much of the language is self-implemented (in clojure), using Java mostly for bootstrapping the core functionality. I don't think clojure.lang package is really intended to be used directly.

To learn about Clojure functions you can:

  • Use (doc) and (find-doc) from a repl
  • Use the API reference at clojure.org
  • See ClojureDocs, per @Belun's answer
0

精彩评论

暂无评论...
验证码 换一张
取 消