In Scala immutable TreeSet class
, the exists() method is utilised to check whether a predicate holds for any of the elements of the TreeSet.
Method Definition: def exists(p: (A) => Boolean): Boolean
Return Type: It returns true if the predicate holds true for any of the elements of the TreeSet or else returns false.
Example #1:
import scala.collection.immutable. _
object GfG
{
def main(args : Array[String])
{
val t 1 = TreeSet( 1 , 3 , 2 , 7 , 6 , 5 )
println(t 1 )
val result = t 1 .exists(x => {x % 7 == 0 })
println( "Element divisible by 7 exists: " + result)
}
}
|
Output:
TreeSet(1, 2, 3, 5, 6, 7)
Element divisible by 7 exists: true
Example #2:
import scala.collection.immutable. _
object GfG
{
def main(args : Array[String])
{
val t 1 = TreeSet( 1 , 3 , 2 , 7 , 6 , 5 )
println(t 1 )
val result = t 1 .exists(x => {x == 10 })
println( "Element 10 exists: " + result)
}
}
|
Output:
TreeSet(1, 2, 3, 5, 6, 7)
Element 10 exists: false
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
19 Apr, 2020
Like Article
Save Article