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.immutable.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.immutable.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)