55565758596061
/** * Creates a deferred filtering short iterable for the specified short iterable. */ public static LazyShortIterable select(ShortIterable iterable, ShortPredicate predicate) { return new SelectShortIterable(iterable, predicate); }
1792179317941795179617971798
return !this.anySatisfy(predicate); } public LazyShortIterable select(ShortPredicate predicate) { return new SelectShortIterable(this, predicate); }
1797179817991800180118021803
return new SelectShortIterable(this, predicate); } public LazyShortIterable reject(ShortPredicate predicate) { return new SelectShortIterable(this, ShortPredicates.not(predicate)); }