Scala TreeSet forall() method with example
In Scala TreeSet class
, the forall() method is utilized to check if a predicate holds true for all the elements of the TreeSet.
Method Definition: def forall(p: (A) => Boolean): Boolean
Return Type: It returns true if the predicate holds true for all the elements of the TreeSet or else returns false.
Example #1:
// Scala program of forall() // method // Import TreeSet import scala.collection.mutable. _ // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating TreeSet val t 1 = TreeSet( 2 , 4 , 6 , 7 , 8 , 9 ) // Print the TreeSet println(t 1 ) // Applying forall() method val result = t 1 .forall(x => {x % 7 == 0 }) // Displays output println( "All the elements are divisible by 7: " + result) } } |
chevron_right
filter_none
Output:
TreeSet(2, 4, 6, 7, 8, 9) All the elements are divisible by 7: false
Example #2:
// Scala program of forall() // method // Import TreeSet import scala.collection.mutable. _ // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating TreeSet val t 1 = TreeSet( 2 , 4 , 6 , 8 ) // Print the TreeSet println(t 1 ) // Applying forall() method val result = t 1 .forall(x => {x % 2 == 0 }) // Displays output println( "All the elements are even: " + result) } } |
chevron_right
filter_none
Output:
TreeSet(2, 4, 6, 8) All the elements are even: true
Recommended Posts:
- Scala Set forall() method with example
- Scala Queue forall() method with example
- Scala Stack forall() method with example
- Scala List forall() method with example
- Scala SortedSet forall() method with example
- Scala Iterator forall() method with example
- Scala TreeSet &() method with example
- Scala TreeSet contains() method with example
- Scala TreeSet -() method with example
- Scala TreeSet take() method with example
- Scala TreeSet sum() method with example
- Scala TreeSet ++() method with example
- Scala TreeSet +() method with example
- Scala TreeSet &~() method with example
- Scala TreeSet last() method with example
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.