1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00
Files
til/clojure/open-javadocs.md
2015-08-10 19:36:49 -05:00

464 B

Open JavaDocs

Clojure has all kinds of Java interop including a fancy function called javadoc. The javadoc function opens a browser window displaying the javadoc for the argument.

Thinking about using Java's ArrayList class, but want to read up on it first? Try

> (javadoc java.util.ArrayList)
true

The javadoc page for ArrayList will be opened up in your default browser.