Open In App

Scala Short min() method with example

Last Updated : 11 Nov, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The min() method is utilized to find the minimum of the two specified Short types.

Method Definition: def min(that: Short): Short

Return Type: It returns the number of type Short with the minimum value.

Example: 1#




// Scala program of min()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying min() method 
        val result = (1000).min(998)
          
        // Displays output
        println(result)
      
    }


Output:

998

Example: 2#




// Scala program of min()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying min() method
        val result = (445).min(1000)
          
        // Displays output
        println(result)
          
    }


Output:

445


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads