El método init() se utiliza para eliminar el último elemento de SortedMap. Devolverá todos los elementos del SortedMap excepto el último.
Definición del método: def init: SortedMap[A, B]
Tipo de retorno: Devuelve todos los elementos del SortedMap excepto el último.
Ejemplo 1:
// Scala program of init() // method import scala.collection.SortedMap // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating SortedMap val m1 = SortedMap("geeks" -> 5, "for" -> 3, "cs"-> 2) // Applying init method val result = m1.init // Displays output println(result) } }
Producción:
Map(cs -> 2, for -> 3)
Ejemplo #2:
// Scala program of init() // method import scala.collection.SortedMap // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating SortedMap val m1 = SortedMap("geeks" -> 5) // Applying init method val result = m1.init // Displays output println(result) } }
Producción:
Map()