Open In App

Scala Set min() method with example

Last Updated : 18 Oct, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The max() 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 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a set 
        val s1 = Set(1, 2, 3
          
        // Applying min method 
        val result = s1.min
          
        // Display output
        println(result)
    


Output:

1

Example #2:




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


Output:

5


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

Similar Reads