En las colecciones mutables de Scala, el método SortedSet head() se utiliza para mostrar el primer elemento del 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.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(12, 15, 14, 13) // Applying head method val result = s1.head // Display output println(result) } }
Producción:
12
Ejemplo #2:
// Scala program of head() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(6, 7, 5, 4, 1) // Applying head method val result = s1.head // Display output println(result) } }
Producción:
1