Open In App

Scala Set isEmpty() method with example

Improve
Improve
Like Article
Like
Save
Share
Report

The isEmpty() method is utilized to test if the set is empty or not.

Method Definition: def isEmpty: Boolean

Return Type: It returns true if the set is empty else it returns false.

Example #1:




// Scala program of isEmpty() 
// method 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a set 
        val s1 = Set(1, 2, 3, 4, 5
          
        // Applying isEmpty method 
        val result = s1.isEmpty
          
        // Display output
        println(result)
    


Output:

false

Example #2:




// Scala program of isEmpty() 
// method 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a set 
        val s1 = Set() 
          
        // Applying isEmpty method 
        val result = s1.isEmpty
          
        // Display output
        println(result)
    


Output:

true


Last Updated : 18 Oct, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads