Método inmutable TreeSet drop() de Scala

En Scala immutable TreeSet class, el método drop() se utiliza para eliminar los primeros elementos ‘n’ del TreeSet.

Definición del método: def drop(n: Int): TreeSet[A]

Tipo de retorno: Devuelve un nuevo TreeSet con todos los elementos excepto los primeros ‘n’.

Ejemplo 1:

// Scala program of drop() 
// 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 drop() method  
        val result = t1.drop(2)
          
        // Displays output 
        println("TreeSet after using drop(2) method: " + result)
          
    } 
} 
Producción:

TreeSet(2, 4, 6, 7, 8, 9)
TreeSet after using drop(2) method: TreeSet(6, 7, 8, 9)

Ejemplo #2:

// Scala program of drop() 
// 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 drop() method  
        val result = t1.drop(3)
          
        // Displays output 
        println("TreeSet after using drop(3) method: " + result)
          
    } 
} 
Producción:

TreeSet(2, 4, 6, 7, 8, 9)
TreeSet after using drop(3) method: TreeSet(7, 8, 9)

Publicación traducida automáticamente

Artículo escrito por Shivam_k y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *