En Scala Stack class
, el método forall() se utiliza para verificar si un predicado se cumple para todos los elementos de la pila.
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 pila o de lo contrario devuelve falso.
Ejemplo 1:
// Scala program of forall() // method // Import Stack import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating stack val s1 = Stack(6, 2, 3, 4, 5) // Print the stack println(s1) // Applying forall method val result = s1.forall(x => {x % 7 == 0}) // Display output println("All the elements are divisible by 7: " + result) } }
Producción:
Stack(6, 2, 3, 4, 5) All the elements are divisible by 7: false
Ejemplo #2:
// Scala program of forall() // method // Import Stack import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating stack val s1 = Stack(7, 9, 3, 1, 5) // Print the stack println(s1) // Applying forall method val result = s1.forall(x => {x % 2 == 1}) // Display output println("All the elements are odd: " + result) } }
Producción:
Stack(7, 9, 3, 1, 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