In Scala mutable collections, tail() method is utilized to return a SortedSet consisting of all the elements except the first element of the SortedSet.
Method Definition: def tail: SortedSet[A]
Return Type: It returns a SortedSet consisting of all the elements except the first element of the SortedSet.
Example #1:
import scala.collection.mutable.SortedSet
object GfG
{
def main(args : Array[String])
{
val s 1 = SortedSet( 8 , 7 , 6 , 2 )
val result = s 1 .tail
println(result)
}
}
|
Example #2:
import scala.collection.mutable.SortedSet
object GfG
{
def main(args : Array[String])
{
val s 1 = SortedSet( 4 , 1 , 23 , 43 )
val result = s 1 .tail
println(result)
}
}
|
Output:
TreeSet(4, 23, 43)