El método init() se utiliza para encontrar todos los elementos del conjunto excepto el último.
Definición del método: def init: Set[A]
Tipo de retorno: Devuelve todos los elementos del conjunto excepto el último.
Ejemplo 1:
// Scala program of init() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a set val s1 = Set(1, 2, 3, 4, 5) // Applying init method val result = s1.init // Display output println(result) } }
Producción:
Set(5, 1, 2, 3)
Ejemplo #2:
// Scala program of init() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a set val s1 = Set(16, 22, 3, 41, 51) // Applying init method val result = s1.init // Display output println(result) } }
Producción:
Set(41, 22, 3, 16)
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA