En las colecciones mutables de Scala, el método takeRight() se utiliza para devolver un SortedSet que consta de los últimos ‘n’ elementos del SortedSet.
Definición del método: def takeRight(n: Int):SortedSet[A]
Donde ‘n’ especifica el número de elementos a seleccionar.Tipo de retorno: Devuelve un SortedSet que consta de los últimos ‘n’ elementos del SortedSet.
Ejemplo 1:
// Scala program of takeRight() // 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, 1) // Applying takeRight method val result = s1.takeRight(4) // Display output println(result) } }
Producción:
TreeSet(1, 2, 3, 4)
Ejemplo #2:
// Scala program of takeRight() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(41, 12, 23, 43) // Applying takeRight method val result = s1.takeRight(3) // Display output println(result) } }
Producción:
TreeSet(23, 41, 43)