En las colecciones mutables de Scala, el método last() se utiliza para devolver el último elemento del SortedSet.
Definición del método: def last: A
Tipo de retorno: Devuelve el último elemento del SortedSet.
Ejemplo 1:
// Scala program of last() // 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) // Applying last method val result = s1.last // Display output println(result) } }
Producción:
4
Ejemplo #2:
// Scala program of last() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet("geeks", "for", "geeks", "classes") // Applying last method val result = s1.last // Display output println(result) } }
Producción:
geeks