En las colecciones mutables de Scala, el método count() se utiliza para contar el número de elementos en SortedSet.
Definición del método: def count(p: (A) => Boolean): Int
Tipo de retorno: Devuelve el número de elementos presentes en el SortedSet.
Ejemplo 1:
// Scala program of count() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating SortedSets val s1 = SortedSet(10, 22, 32, 4, 5) // Applying count method val result = s1.count(z=>true) // Displays output println(result) } }
Producción:
5
Ejemplo #2:
// Scala program of count() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating SortedSets val s1 = SortedSet(72, 666, 454) // Applying count method val result = s1.count(z=>true) // Displays output println(result) } }
Producción:
3