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