En Scala immutable TreeSet class
, el método dropRight() se utiliza para eliminar los últimos elementos ‘n’ del TreeSet.
Definición del método: def dropRight(n: Int): TreeSet[A]
Tipo de devolución: devuelve un nuevo TreeSet que consta de todos los elementos excepto los últimos ‘n’ elementos.
Ejemplo 1:
// Scala program of dropRight() // method // Import TreeSet import scala.collection.immutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet(2, 4, 6, 7, 8, 9) // Print the TreeSet println(t1) // Applying dropRight() method val result = t1.dropRight(2) // Displays output println("Queue after using dropRight(2) method: " + result) } }
Producción:
TreeSet(2, 4, 6, 7, 8, 9) Queue after using dropRight(2) method: TreeSet(2, 4, 6, 7)
Ejemplo #2:
// Scala program of dropRight() // method // Import TreeSet import scala.collection.immutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet(2, 4, 6, 7, 8, 9) // Print the TreeSet println(t1) // Applying dropRight() method val result = t1.dropRight(4) // Displays output println("Queue after using dropRight(4) method: " + result) } }
Producción:
TreeSet(2, 4, 6, 7, 8, 9) Queue after using dropRight(4) method: TreeSet(2, 4)