55565758596061
/** * Creates a deferred filtering float iterable for the specified float iterable. */ public static LazyFloatIterable select(FloatIterable iterable, FloatPredicate predicate) { return new SelectFloatIterable(iterable, predicate); }
1792179317941795179617971798
return !this.anySatisfy(predicate); } public LazyFloatIterable select(FloatPredicate predicate) { return new SelectFloatIterable(this, predicate); }
1797179817991800180118021803
return new SelectFloatIterable(this, predicate); } public LazyFloatIterable reject(FloatPredicate predicate) { return new SelectFloatIterable(this, FloatPredicates.not(predicate)); }