El método head() se utiliza para mostrar el primer elemento de SortedSet.
Definición del método: cabeza def: A
Tipo de retorno: Devuelve el primer elemento del SortedSet.
Ejemplo 1:
// Scala program of head() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(5, 1, 2, 3, 4) // Applying head method val result = s1.head // Display output println(result) } }
Producción:
1
Ejemplo #2:
// Scala program of head() // method import scala.collection.immutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(41, 16, 22, 3, 51) // Applying head method val result = s1.head // Display output println(result) } }
Producción:
3