Open In App

Scala Iterator nonEmpty() method with example

Last Updated : 13 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The nonEmpty method belongs to the concrete value member of the class Abstract Iterator. It is utilized to check whether the stated collection is not empty.

Method Definition: def nonEmpty: Boolean

Return Type: It returns true if the stated collection contains at least one element else returns false.

Example #1:




// Scala program of nonEmpty()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating an Iterator 
        val iter = Iterator(3, 4, 6)
          
        // Applying nonEmpty method 
        val result = iter.nonEmpty
          
        // Displays output
        println(result)
      
    }
}


Output:

true

Example #2:




// Scala program of nonEmpty()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating an empty Iterator 
        val iter = Iterator()
          
        // Applying nonEmpty method 
        val result = iter.nonEmpty
          
        // Displays output
        println(result)
      
    }
}


Output:

false


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

Similar Reads