Reputation: 63172
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
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