Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to download the latest Scala API documentation?

Tags:

Since Scala 2.10.2, I can't find the download link for its API documentation. Is this an intentional omission? Where can I download it?

Alternatively, what is the exact scalac command to generate the same one with http://www.scala-lang.org/api/current/index.html ? (e.g. I don't know which source jars I have to include.)

like image 579
trustin Avatar asked Sep 03 '13 09:09

trustin


People also ask

Where do I find API document?

To access all API documentation, navigate to our Data & Insights Developer site and click on API Docs in the top header. We also support a number of programmatic data publishing solutions used to import data to the Data & Insights platform.

How do you create a Scaladoc?

Now you can generate Scaladoc html documentation for the entire project or custom scope from the IntelliJ IDEA. To use it, select “Generate Scaladoc” from Tools menu. Then you will see configuration dialog: After choosing output directory you can press OK and get documentation for your project.

What is a Scala library?

Scala combines object-oriented and functional programming in one concise, high-level language. Scala's static types help avoid bugs in complex applications, and its JVM and JavaScript runtimes let you build high-performance systems with easy access to huge ecosystems of libraries.


3 Answers

See API docs at this page.

How to find:

scala-lang.org -> Download -> All downloads -> Scala 2.10.2.

like image 186
senia Avatar answered Oct 14 '22 21:10

senia


The API Docs download is hard to find because if you just go to the link for the current version of scala the menu item named other resources which has as a subitem, the API docs download isn't there.

So, to find the api docs:

http://www.scala-lang.org/ download All Downloads click on latest version or version you want scroll down to other resources and you will see API DOCS

if you go to: http://www.scala-lang.org/ download the the latest version pops up but without the other resources at the bottom.

This is why it is hard to locate.

like image 23
alexmac Avatar answered Oct 14 '22 20:10

alexmac


  • 2.11.8 docs in .txz format: http://downloads.typesafe.com/scala/2.11.8/scala-docs-2.11.8.txz
  • 2.11.8 docs in .zip format: http://downloads.typesafe.com/scala/2.11.8/scala-docs-2.11.8.zip

As of March 2015, you need to take the approach in @michael_n's comment:

http://downloads.typesafe.com/scala/{version}/scala-docs-{version}.txz
http://downloads.typesafe.com/scala/{version}/scala-docs-{version}.zip
like image 35
yegeniy Avatar answered Oct 14 '22 19:10

yegeniy