Open In App

Scala Mutable SortedSet min() method

Last Updated : 26 Mar, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report

In Scala mutable collections, min() method is utilized to find the smallest element of all the elements in the stated list.

Method Definition: def min: A

Return Type: It returns the smallest of all the elements in the stated list.

Example #1:




// Scala program of min() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a SortedSet 
        val s1 = SortedSet(11, 22, 33
          
        // Applying min method 
        val result = s1.min
          
        // Display output
        println(result)
    


Output:

11

Example #2:




// Scala program of min() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a SortedSet 
        val s1 = SortedSet(11, 23, 72, 14, 21, 118
          
        // Applying min method 
        val result = s1.min
          
        // Display output
        println(result)
    


Output:

14


Next Article

Similar Reads