DoubleStream noneMatch(DoublePredicate predicate) returns whether no 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 noneMatch(DoublePredicate predicate)
Where, DoublePredicate represents a predicate
(boolean-valued function) of one double-valued argument.
Return Value : The function returns true if either all elements of the stream match the provided predicate or the stream is empty, otherwise false.
Note : If the stream is empty then true is returned and the predicate is not evaluated.
Example 1 : noneMatch() function to check whether no element of DoubleStream is divisible by 5.
import java.util.*;
import java.util.stream.DoubleStream;
class GFG {
public static void main(String[] args)
{
DoubleStream stream =
DoubleStream.of( 3.2 , 5.0 , 9.3 , 12.4 , 14.7 );
boolean answer =
stream.noneMatch(num -> num % 5 == 0 );
System.out.println(answer);
}
}
|
Example 2 : noneMatch() function to check whether no element in the DoubleStream obtained after concatenating two DoubleStreams is less than 2.
import java.util.*;
import java.util.stream.DoubleStream;
class GFG {
public static void main(String[] args)
{
DoubleStream stream = DoubleStream.concat(
DoubleStream.of( 3.3 , 4.2 , 5.1 , 6.6 ),
DoubleStream.of( 7.2 , 8.3 , 9.1 , 10.5 ));
boolean answer = stream.noneMatch(num -> num < 2 );
System.out.println(answer);
}
}
|
Example 3 : noneMatch() function to show if the stream is empty then true is returned.
import java.util.*;
import java.util.stream.DoubleStream;
class GFG {
public static void main(String[] args)
{
DoubleStream stream = DoubleStream.empty();
boolean answer = stream.noneMatch(num -> true );
System.out.println(answer);
}
}
|
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!