Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 464 Bytes

open-javadocs.md

File metadata and controls

17 lines (13 loc) · 464 Bytes

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.