En las colecciones mutables de Scala, el método SortedSet filter() se utiliza para seleccionar todos los elementos del SortedSet que satisfacen un predicado establecido.
Definición del método: def filter(p: (A) => Boolean): SortedSet[A]
Tipo de retorno: Devuelve un TreeSet que contiene todos los elementos del SortedSet que satisface el predicado dado.
Ejemplo 1:
// Scala program of filter() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(5, 12, 3, 13) // Applying filter method val result = s1.filter(_ < 10) // Displays output println(result) } }
Producción:
TreeSet(3, 5)
Ejemplo #2:
// Scala program of filter() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(5, 12, 3, 13) // Applying filter method val result = s1.filter(_ < 3) // Displays output println(result) } }
Producción:
TreeSet()