WestCoastProjects
WestCoastProjects

Reputation: 63172

Not all class methods listed in the scala online language reference?

I am looking at scala.io.Source. It has a bunch of

   fromXXXX()

methods. However in the online reference I do not see them.

Where are those methods - and more generally a comprehensive list of all methods on scala.io.Source - located?

Upvotes: 2

Views: 40

Answers (1)

Biswanath
Biswanath

Reputation: 9185

You are seeing the documentation of the class source. Please see the documentation of object source which link(http://www.scala-lang.org/api/2.11.5/index.html#scala.io.Source$ , inline url is ignoring the $) to which is listed on the right side of the page.

Upvotes: 3

Related Questions