Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

clojure.lang, etc. api [closed]

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

Thanks.

like image 427
Ralph Avatar asked Feb 26 '23 01:02

Ralph


2 Answers

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

you can even contribute ;)

like image 123
Belun Avatar answered Mar 03 '23 01:03

Belun


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
like image 30
G__ Avatar answered Mar 03 '23 02:03

G__