En las colecciones mutables de Scala, el método SortedSet init() se utiliza para encontrar todos los elementos del SortedSet excepto el último.
Definición del método: def init: SortedSet[A]
Tipo de retorno: Devuelve todos los elementos del SortedSet excepto el último.
Ejemplo 1:
// Scala program of init() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(1, 2, 3, 4, 5) // Applying init method val result = s1.init // Display output println(result) } }
Producción:
TreeSet(1, 2, 3, 4)
Ejemplo #2:
// Scala program of init() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(16, 22, 3, 41, 51) // Applying init method val result = s1.init // Display output println(result) } }
Producción:
TreeSet(3, 16, 22, 41)