In scala mutable collection, drop() method is utilized to delete the first ‘n’ elements or to return all elements except first ‘n’ elements.
Method Definition: def drop(n: Int): SortedSet[A]]
Return Type: It returns all elements except first ‘n’ elements.
Example #1:
import scala.collection.mutable.SortedSet
object GfG
{
def main(args : Array[String])
{
val s 1 = SortedSet( 5 , 1 , 2 , 3 , 4 )
val s 2 = s 1 .drop( 2 )
for (elem < - s 2 )
println(elem)
}
}
|
Example #2:
import scala.collection.mutable.SortedSet
object GfG
{
def main(args : Array[String])
{
val s 1 = SortedSet( 5 , 1 , 2 , 3 , 4 )
val s 2 = s 1 .drop( 4 )
for (elem < - s 2 )
println(elem)
}
}
|