docs.scala-lang
docs.scala-lang copied to clipboard
The Scala Documentation website
https://github.com/scala/docs.scala-lang/blob/67f117529298432e799cd88982240bb13a38301a/_tour/variances.md#other-examples At the end of the page on variances the reader has to do a lot of work to figure out the "what does the animal eat example". I think...
Ref: https://github.com/scala/docs.scala-lang/blob/master/_overviews/scaladoc/for-library-authors.md
https://github.com/scala/scala-module-dependency-sample is archived, but at https://github.com/retronym/scala-module-dependency-sample/pull/1 @retronym noticed that we link to it from this repo, e.g. from https://docs.scala-lang.org/tutorials/scala-with-maven.html (perhaps elsewhere)
Reading through [Binary Compatibility of Scala Releases](https://github.com/scala/docs.scala-lang/blob/master/_overviews/core/binary-compatibility-of-scala-releases.md), it remains unclear whether there is any promise whether `serialVersionUID` will remain stable between Scala releases. Specifically, if running and/or compiling an application...
as @tpolecat observed on Gitter, https://stackoverflow.com/questions/15394322/how-to-disambiguate-links-to-methods-in-scaladoc/15399824#15399824 ought to be incorporated into https://docs.scala-lang.org/overviews/scaladoc/for-library-authors.html
I am porting some legacy code from 2.12 to 2.13 (this code originated maybe 10 years ago in the 2.9 or 2.10 days...) and I found this document to help...
The `stringPrefix` method is mentioned in this page: https://docs.scala-lang.org/overviews/collections-2.13/trait-iterable.html However, when I open a specific API page like `Iterable`, I **can't** find this method. Also in the REPL, I **can't**...
As shown here: https://github.com/scala/docs.scala-lang/pull/1469#pullrequestreview-295418228
In [this page](https://docs.scala-lang.org/tutorials/FAQ/finding-symbols.html) the following link is used several times: `https://www.scala-lang.org/api/current/index.html#index.index-_` I'm not entirely sure what should be happening but at least in my browser (firefox 70.0.1 on windows) the...
In [this page](https://github.com/scala/docs.scala-lang/blob/master/_style/files.md) the style guide talks about compilation units as though every class, trait, object is a separate compilation unit. But AFAIK this conflicts with the "official Scala definition"...