Open In App

Scala Mutable SortedMap min() method with example

Last Updated : 04 May, 2020
Comments
Improve
Suggest changes
Like Article
Like
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
// 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
// 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)

Next Article

Similar Reads