En las colecciones mutables de Scala, el método tail() se utiliza para devolver un SortedSet que consta de todos los elementos excepto el primer elemento del SortedSet.
Definición del método: def tail: SortedSet[A]
Tipo de retorno: Devuelve un SortedSet que consta de todos los elementos excepto el primer elemento del SortedSet.
Ejemplo 1:
// Scala program of tail() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(8, 7, 6, 2) // Applying tail method val result = s1.tail // Display output println(result) } }
Producción:
TreeSet(6, 7, 8)
Ejemplo #2:
// Scala program of tail() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(4, 1, 23, 43) // Applying tail method val result = s1.tail // Display output println(result) } }
Producción:
TreeSet(4, 23, 43)