Using the Scala API : http://www.scala-lang.org/api/2.10.4 is there a way to find the object or class associated with a method ?
So if I just know that there exists a method "println" is there a quick way to navigate to the details of this method at API location ? (other than searching the Scala source)
println
is specifically defined inPredef
, where lots of automatically-imported stuff is found: scala-lang.org/files/archive/api/2.10.4/#scala.Predef$ – dhg