Open In App

Scala Iterator slice() method with example

Improve
Improve
Like Article
Like
Save
Share
Report

The slice() method belongs to the concrete value members of the class AbstractIterator. It is defined in the class Iterator. It creates a new iterator for the interval given in the slice. The first value present in the slice indicates the start of the element in the new iterator and the second value present in the slice indicates the end.

  • Method Definition:

    def slice(from: Int, until: Int): Iterator[A]

    Where, from implies index of the first element and until implies index of the first element following the slice.

  • Return Type:
    It returns a new iterator with elements from from until until.

Example :




// Scala program of slice()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Declaring a iterator
        val iter = Iterator(1, 2, 3, 4, 5)
          
        // Applying slice method
        val iter1 = iter.slice(1, 4)
          
        // Using while loop to print the 
        // elements of new iterator
        while(iter1.hasNext)
        {
              
            // Displays output
            println(iter1.next())
          
        }
    }
}


Output:

2
3
4

Here, if the interval present in the slice is like (n, m) then the elements will be printed from the nth index till (m-1)th index. The functions hasNext and next are used here to print the elements of the new iterator.
Example :




// Scala program of slice()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Declaring a iterator
        val iter = Iterator(2, 4, 5, 6)
          
        // Applying slice method
        val iter1 = iter.slice(0, 3)
          
        // Using while loop to print the 
        // elements of new iterator
        while(iter1.hasNext)
        {
              
            // Displays output
            println(iter1.next())
      
        }
    }
}


Output:

2
4
5

Here, the elements are printed from the index zero till the second index.



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