55565758596061
/** * Creates a deferred filtering byte iterable for the specified byte iterable. */ public static LazyByteIterable select(ByteIterable iterable, BytePredicate predicate) { return new SelectByteIterable(iterable, predicate); }
1787178817891790179117921793
return !this.anySatisfy(predicate); } public LazyByteIterable select(BytePredicate predicate) { return new SelectByteIterable(this, predicate); }
1792179317941795179617971798
return new SelectByteIterable(this, predicate); } public LazyByteIterable reject(BytePredicate predicate) { return new SelectByteIterable(this, BytePredicates.not(predicate)); }