Stream anyMatch(Predicate predicate) returns whether any elements of this stream match the provided predicate. It may not evaluate the predicate on all elements if not necessary for determining the result. This is a short-circuiting terminal operation. A terminal operation is short-circuiting if, when presented with infinite input, it may terminate in finite time.
Syntax :
boolean anyMatch(Predicate<? super T> predicate)
Where, T is the type of the input to the predicate
and the function returns true if any elements of
the stream match the provided predicate,
otherwise false.
Note : If the stream is empty then false is returned and the predicate is not evaluated.
Below given are some examples to understand the implementation of the function in a better way.
Example 1 : anyMatch() function to check whether any element in list satisfy given condition.
import java.util.*;
class GFG {
public static void main(String[] args) {
List<Integer> list = Arrays.asList( 3 , 4 , 6 , 12 , 20 );
boolean answer = list.stream().anyMatch(n
-> (n * (n + 1 )) / 4 == 5 );
System.out.println(answer);
}
}
|
Output :
true
Example 2 : anyMatch() function to check whether any element in list having UpperCase at 1st index.
import java.util.stream.Stream;
class GFG {
public static void main(String[] args)
{
Stream<String> stream = Stream.of( "Geeks" , "fOr" ,
"GEEKSQUIZ" , "GeeksforGeeks" );
boolean answer = stream.anyMatch(str -> Character.isUpperCase(str.charAt( 1 )));
System.out.println(answer);
}
}
|
Output :
true
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!