What’s the difference between something being defined in the scala package object and in Predef?
Is Predef just a relic from pre-2.8 when package objects didn’t exist, or is there some other reason why we need both?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
According to the ScalaDoc,
So, it is not a package object itself, but acts as one in terms of providing functionality to “all Scala compilation units”
As for why the situation exists, I think you are right, looks to be a legacy issue
As for why it persists, there may continue to be limitations of package objects that prevent PreDef from being merged.