mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
464 B
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.