Open In App

Scala Mutable SortedMap min() method with example

Last Updated : 04 May, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The min() method is utilized to find the smallest element of the SortedMap.

Method Definition: def min: (A, B)

Return Type: It returns the smallest element of the SortedMap.

Example #1:




// Scala program of min()
// method
import scala.collection.SortedMap
  
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating SortedMap
        val m1 = SortedMap("geeks" -> 5, "for" -> 3, "cs" -> 2)
          
        // Applying min method 
        val result = m1.min
          
        // Displays output
        println(result)
    }
}


Output:

(cs, 2)

As we can see in above example cs is the smallest element in the SortedMap.
Example #2:




// Scala program of min()
// method
import scala.collection.SortedMap
  
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating SortedMap
        val m1 = SortedMap("geeks" -> 5, "for" -> 3, "for" -> 6)
          
        // Applying min method 
        val result = m1.min
          
        // Displays output
        println(result)
    }
}


Output:

(for, 6)


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads