Open In App
Related Articles

Scala Iterator drop() method with example

Improve Article
Improve
Save Article
Save
Like Article
Like

The drop() method belongs to the concrete value member of the class Abstract Iterator. It is defined in the classes Iterator and IterableOnceOps. It is utilized to move the iterator n places ahead and if n is greater than the iterator’s length, then it will throw an exception.

Method Definition : def drop(n: Int): Iterator[A]

Where, n is the number of elements to be dropped from the stated iterator.

Return Type : It returns all the elements of the stated iterator except the first n ones.

Example #1:




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


Output:

13

Here, the first four elements are dropped and all the elements after that are returned.
Example #2:




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


Output:

3

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 : 30 Jun, 2019
Like Article
Save Article
Previous
Next
Similar Reads