Scala Mutable SortedSet dropWhile()

En las colecciones mutables de Scala, el método dropWhile() se utiliza para eliminar el prefijo más largo de elementos del SortedSet que satisface la condición establecida.

Definición del método: def dropWhile(p: (A) => Boolean): SortedSet[A]

Tipo de devolución: devuelve un TreeSet que contiene todos los elementos después de eliminar el prefijo más largo de los elementos del SortedSet que satisface la condición establecida.

Ejemplo 1:

// Scala program of dropWhile() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating a list 
        var s1 = SortedSet(1, 3, 5, 4, 2) 
          
        // Print the SortedSet
        println(s1)
          
        // Applying dropWhile method 
        var res = s1.dropWhile(x => {x % 2 != 0}) 
          
        // Displays output 
        println(res) 
      
    } 
} 
Producción:

TreeSet(1, 2, 3, 4, 5)
TreeSet(2, 3, 4, 5)

Ejemplo #2:

// Scala program of dropWhile() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating a list 
        var s1 = SortedSet(15, 17, 21) 
          
        // Print the SortedSet
        println(s1)
          
        // Applying dropWhile method 
        var res = s1.dropWhile(x => {x % 3 == 0}) 
          
        // Displays output 
        println(res) 
      
    } 
} 
Producción:

TreeSet(15, 17, 21)
TreeSet(17, 21)

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 *