tags:

views:

127

answers:

1

There are some "global" functions in scala, for example:

print
println
classOf
format

The first 2 are actually Console's singleton methods, the last comes from java.lang.String.format.

I believe there are some more, may somebody list all of them, or point out where I can find corresponding API documentation ?

+10  A: 

They're all defined in the scala.Predef object.

Ken Bloom
Thanks for fast response!
ns
http://www.scala-lang.org/docu/files/api/scala/Predef%24object.html
ewg