Scaladoc is a documentation generation system which reads specially formatted comments in Scala source code and generates compiled documentation. It is typically used to produce API documentation in the form of HTML web pages.
Scala API 2.10.2 shows indexes for some packages such as scala.util.parsing.json and scala.xml
Scala API 2.11.8 doesn't show those packages. But the code does exist in Scala 2.11.
scala.util.parsing.json.JSONArray(List("Banana", "Yogurt",…
Is there any public Scaladoc API of scala.reflect.io? It seems there are useful IO utilities in there. Would it be more beneficial to use these instead of Java IO?
Saw in Scala 2.11.8 Source
there is an object scala.reflect.io.Directory which allows…
I am trying to dig scala deeper but scaladocs is not straight as javadocs. While doing some mathematical operation I visited to scala.math here package.
I am not able to understand value member in the docs.please suggest some guide line to decipher…
How to make a link to some imported name (which is in another package) in scaladoc, whithout having to use fully qualified name?
Example:
file 1
package com.pany.pck1.subpck
class Class1
file 2
package com.pany.pck2.othersubpck
import…
I have a multi-project SBT configuration. I have a class my.AClass in project1. What should I add to configuration to make scaladoc as follows
/**
* [[my.AClass]]
*/
class BClass
in project2 be successfully compiled by sbt project2/doc?
Play seem to generate documentation thru "build" or "doc" commands.
How are we supposed to use this feature ?
Is it generating text files ?
Is it generating html files ?
How can i consult this doc ?
Is it even made for humans or is it an internal…
I am using Eclipse for writing Scala code.
I installed the Scala plugin in Eclipse. In the Java environment in Eclipse there are explanations available for every built in method, but for Scala, Eclipse does not show Scala doc.
What can I do to view…
I hit a MissingRequirementError when I try to invoke scaladoc from within an sbt task.
Using any version of sbt 0.13.x, start with this build.sbt:
val scaladoc = taskKey[Unit]("run scaladoc")
scaladoc := {
import scala.tools.nsc._
val settings…
I wonder where I can find the exceptions raised by such a code:
def readFromDB: String = {
db_sqlite_xml.withSession {
implicit db: Session =>
xmlQuery.first.text
}
}
I can't find it in the slick scaladoc…
Something as simple
class Thunk[+A](body: => A) {
lazy val result: A = body;
}
Is it defined somewhere?
Or perhaps a slightly more sohpisticated
class Thunk[+A](body: => A) {
private[this] var evaluatedInternal = false;
lazy val result: A =…
None of the Value Members of the Tuple2 class appear when I do a search for them.
Examples: _2, invert, swap
Are some classes intentionally left out when doing a scaladoc search? Is my browser playing tricks on me?