55565758596061
/** * Creates a deferred filtering char iterable for the specified char iterable. */ public static LazyCharIterable select(CharIterable iterable, CharPredicate predicate) { return new SelectCharIterable(iterable, predicate); }
1792179317941795179617971798
return !this.anySatisfy(predicate); } public LazyCharIterable select(CharPredicate predicate) { return new SelectCharIterable(this, predicate); }
1797179817991800180118021803
return new SelectCharIterable(this, predicate); } public LazyCharIterable reject(CharPredicate predicate) { return new SelectCharIterable(this, CharPredicates.not(predicate)); }