Initialization of scala.Predef
class is lazy heavyweight operation which may cause unexpected slowdown of application and will become a trouble in situations when timing matters (like programming contests).
val a = new Array[Integer](10)
a(5) = 3 //slowdown on this line
So can I turn off it's laziness and force scala.Predef
initialization on application start using only scala compiler or VM options without making changes in the code?