El método forall() se utiliza para comprobar si un predicado se cumple para todos los elementos de la cola.
Definición del método: def forall(p: (A) => Boolean): Boolean
Tipo de Retorno: Devuelve verdadero si el predicado es verdadero para todos los elementos de la cola o de lo contrario devuelve falso.
Ejemplo 1:
// Scala program of forall() // method // Import Queue import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating queues val q1 = Queue(1, 3, 2, 7, 6, 5) // Print the queue println(q1) // Applying forall method val result = q1.forall(x => {x % 7 == 0}) // Displays output print("All the elements are divisible by 7: " + result) } }
Producción:
Queue(1, 3, 2, 7, 6, 5) All the elements are divisible by 7: false
Ejemplo #2:
// Scala program of forall() // method // Import Queue import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating queues val q1 = Queue(1, 3, 7, 5) // Print the queue println(q1) // Applying forall method val result = q1.forall(x => {x % 2 != 0}) // Displays output print("All the elements are odd: " + result) } }
Producción:
Queue(1, 3, 7, 5) All the elements are odd: true
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA