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.

Last updated