The equals() method is utilized to check whether the two SortedMaps have the same key-values pair or not.
Method Definition: def equals(that: Any): Boolean
Return Type: It returns true if the key-value pairs of both the SortedMaps are same else it returns false.
Example #1:
import scala.collection.immutable.SortedMap
object GfG
{
def main(args : Array[String])
{
val m 1 = SortedMap( "geeks" - > 5 , "for" - > 3 , "cs" - > 2 )
val m 2 = SortedMap( "cs" - > 2 , "for" - > 3 , "geeks" - > 5 )
val result = m 1 .equals(m 2 )
println(result)
}
}
|
Example #2:
import scala.collection.immutable.SortedMap
object GfG
{
def main(args : Array[String])
{
val m 1 = SortedMap( "geeks" - > 5 , "for" - > 3 , "cs" - > 2 )
val m 2 = SortedMap( "cs" - > 2 , "fo" - > 2 , "geeks" - > 5 )
val result = m 1 .equals(m 2 )
println(result)
}
}
|