The exists() method is utilized to check if the given predicate satisfy the elements of the list or not.
Method Definition: def exists(p: (A) => Boolean): Boolean
Return Type: It returns true if the stated predicate holds true for some elements of the list else it returns false.
Example #1:
object GfG
{
def main(args : Array[String])
{
val m 1 = List( 1 , 2 , 3 , 4 , 5 )
val result = m 1 .exists(y => {y % 3 == 0 })
println(result)
}
}
|
Example #2:
object GfG
{
def main(args : Array[String])
{
val m 1 = List( 1 , 2 , 3 , 4 , 5 )
val result = m 1 .exists(y => {y % 9 == 0 })
println(result)
}
}
|