Open In App
Related Articles

Scala Mutable SortedSet isEmpty() method

Improve Article
Improve
Save Article
Save
Like Article
Like

In Scala mutable collections, SortedSet isEmpty() method is utilized to test if the SortedSet is empty or not.

Method Definition: def isEmpty: Boolean

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

Example #1:




// Scala program of isEmpty() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a SortedSet 
        val s1 = SortedSet(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 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a SortedSet 
        val s1 = SortedSet() 
          
        // Applying isEmpty method 
        val result = s1.isEmpty
          
        // Display output
        println(result)
    


Output:

true

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 26 Mar, 2020
Like Article
Save Article
Previous
Next
Similar Reads