What is the difference between == and .equals() in Scala, and when to use which?
==
.equals()
Is the implementation same as in Java?
EDIT: The r
In Scala == first check for Null values and then calls equals method on first object