* Returns a predicate evaluating to the conjunction of its contained predicates.
*/
public static DoublePredicate andPredicate
(final DoublePredicate first,
final DoublePredicate second) {
return new DoublePredicate() {
public final boolean op(double x) {
return first.op(x) && second.op(x);
}
};
}