179180181182183184185
return !predicate.accept(this.value1); } public ImmutableBooleanCollection select(BooleanPredicate predicate) { return predicate.accept(this.value1) ? BooleanArrayList.newListWith(this.value1).toImmutable() : new BooleanArrayList().toImmutable(); }
184185186187188189190
return predicate.accept(this.value1) ? BooleanArrayList.newListWith(this.value1).toImmutable() : new BooleanArrayList().toImmutable(); } public ImmutableBooleanCollection reject(BooleanPredicate predicate) { return predicate.accept(this.value1) ? new BooleanArrayList().toImmutable() : BooleanArrayList.newListWith(this.value1).toImmutable(); }
222223224225226227228
return source.isEmpty(); } public MutableBooleanList toList() { return new BooleanArrayList(); }
277278279280281282283
return UnmodifiableShortSet.of(new ShortHashSet()); } public MutableBooleanCollection values() { return UnmodifiableBooleanCollection.of(new BooleanArrayList()); }
854855856857858859860
return this.collect(function, FastList.<VV>newList(this.size())); } public MutableBooleanCollection collectBoolean(BooleanFunction<? super V> booleanFunction) { return this.collectBoolean(booleanFunction, new BooleanArrayList(this.size())); }
return UnmodifiableFloatSet.of(new FloatHashSet()); } public MutableBooleanCollection values() { return UnmodifiableBooleanCollection.of(new BooleanArrayList()); }