55565758596061
/** * Creates a deferred filtering long iterable for the specified long iterable. */ public static LazyLongIterable select(LongIterable iterable, LongPredicate predicate) { return new SelectLongIterable(iterable, predicate); }
1795179617971798179918001801
return !this.anySatisfy(predicate); } public LazyLongIterable select(LongPredicate predicate) { return new SelectLongIterable(this, predicate); }
1800180118021803180418051806
return new SelectLongIterable(this, predicate); } public LazyLongIterable reject(LongPredicate predicate) { return new SelectLongIterable(this, LongPredicates.not(predicate)); }