Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableBooleanCollection
-
Packages that use MutableBooleanCollection Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal.primitive -
-
Uses of MutableBooleanCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableBooleanCollection Modifier and Type Method Description default <R extends MutableBooleanCollection>
RBooleanIterable. collectBoolean(BooleanToBooleanFunction function, R target)
Returns the targetMutableBooleanCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableBooleanCollection>
RByteIterable. collectBoolean(ByteToBooleanFunction function, R target)
Returns the targetMutableBooleanCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableBooleanCollection>
RCharIterable. collectBoolean(CharToBooleanFunction function, R target)
Returns the targetMutableBooleanCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableBooleanCollection>
RDoubleIterable. collectBoolean(DoubleToBooleanFunction function, R target)
Returns the targetMutableBooleanCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableBooleanCollection>
RFloatIterable. collectBoolean(FloatToBooleanFunction function, R target)
Returns the targetMutableBooleanCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableBooleanCollection>
RIntIterable. collectBoolean(IntToBooleanFunction function, R target)
Returns the targetMutableBooleanCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableBooleanCollection>
RLongIterable. collectBoolean(LongToBooleanFunction function, R target)
Returns the targetMutableBooleanCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableBooleanCollection>
RRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
Same asRichIterable.collectBoolean(BooleanFunction)
, except that the results are gathered into the specifiedtarget
collection.default <R extends MutableBooleanCollection>
RShortIterable. collectBoolean(ShortToBooleanFunction function, R target)
Returns the targetMutableBooleanCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableBooleanCollection>
RRichIterable. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
Same as flatCollect, only the results are collected into the target collection.default <R extends MutableBooleanCollection>
RBooleanIterable. reject(BooleanPredicate predicate, R target)
Same asBooleanIterable.reject(BooleanPredicate)
, only the results are added to the target MutableBooleanCollection.default <R extends MutableBooleanCollection>
RBooleanIterable. select(BooleanPredicate predicate, R target)
Same asBooleanIterable.select(BooleanPredicate)
, only the results are added to the target MutableBooleanCollection. -
Uses of MutableBooleanCollection in org.eclipse.collections.api.bag.primitive
Subinterfaces of MutableBooleanCollection in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interface
MutableBooleanBag
This file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableBooleanCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableBooleanCollection Modifier and Type Method Description default MutableBooleanCollection
MutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)
Returns a new primitiveboolean
iterable with the results of applying the specified function on each element of the source collection. -
Uses of MutableBooleanCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableBooleanCollection Modifier and Type Method Description MutableBooleanCollection
MutableBooleanCollection. asSynchronized()
MutableBooleanCollection
MutableBooleanCollection. asUnmodifiable()
default MutableBooleanCollection
MutableBooleanCollection. newEmpty()
Creates a new empty mutable version of the same collection type.MutableBooleanCollection
MutableBooleanCollection. reject(BooleanPredicate predicate)
MutableBooleanCollection
MutableBooleanCollection. select(BooleanPredicate predicate)
default MutableBooleanCollection
MutableBooleanCollection. tap(BooleanProcedure procedure)
MutableBooleanCollection
MutableBooleanCollection. with(boolean element)
MutableBooleanCollection
MutableBooleanCollection. withAll(BooleanIterable elements)
MutableBooleanCollection
MutableBooleanCollection. without(boolean element)
MutableBooleanCollection
MutableBooleanCollection. withoutAll(BooleanIterable elements)
-
Uses of MutableBooleanCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableBooleanCollection in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
MutableBooleanList
This file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableBooleanCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableBooleanCollection Modifier and Type Method Description MutableBooleanCollection
MutableObjectBooleanMap. reject(BooleanPredicate predicate)
MutableBooleanCollection
MutableObjectBooleanMap. select(BooleanPredicate predicate)
MutableBooleanCollection
BooleanValuesMap. values()
Returns the values in this map as a separate collection.MutableBooleanCollection
ObjectBooleanMap. values()
Returns the values in this map as a separate collection. -
Uses of MutableBooleanCollection in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with type parameters of type MutableBooleanCollection Modifier and Type Method Description default <R extends MutableBooleanCollection>
ROrderedBooleanIterable. rejectWithIndex(BooleanIntPredicate predicate, R target)
Returns a new MutableBooleanCollection excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableBooleanCollection>
ROrderedBooleanIterable. selectWithIndex(BooleanIntPredicate predicate, R target)
Returns a new MutableBooleanCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableBooleanCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableBooleanCollection in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interface
MutableBooleanSet
This file was automatically generated from template file mutablePrimitiveSet.stg. -
Uses of MutableBooleanCollection in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RUnmodifiableRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableRichIterable. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RAbstractBag. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RAbstractBag. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableBooleanCollection Modifier and Type Class Description class
BooleanHashBag
BooleanHashBag is similar toHashBag
, and is memory-optimized for boolean primitives.class
SynchronizedBooleanBag
A synchronized view of aMutableBooleanBag
.class
UnmodifiableBooleanBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg. -
Uses of MutableBooleanCollection in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RAbstractBiMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RAbstractBiMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RUnmodifiableBiMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableBiMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as MutableBooleanCollection Modifier and Type Field Description private MutableBooleanCollection
CollectBooleanProcedure. booleanCollection
Methods in org.eclipse.collections.impl.block.procedure.primitive that return MutableBooleanCollection Modifier and Type Method Description MutableBooleanCollection
CollectBooleanProcedure. getBooleanCollection()
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableBooleanCollection Constructor Description CollectBooleanProcedure(BooleanFunction<? super T> booleanFunction, MutableBooleanCollection targetCollection)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RAbstractSynchronizedRichIterable. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RAbstractSynchronizedRichIterable. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RAbstractCollectionAdapter. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RAbstractMultiReaderMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RAbstractUnmodifiableMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RAbstractMultiReaderMutableCollection. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RAbstractUnmodifiableMutableCollection. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
Methods in org.eclipse.collections.impl.collection.mutable that return MutableBooleanCollection Modifier and Type Method Description MutableBooleanCollection
AbstractSynchronizedMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)
MutableBooleanCollection
AbstractUnmodifiableMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement MutableBooleanCollection Modifier and Type Class Description class
AbstractSynchronizedBooleanCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableBooleanCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedBooleanCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableBooleanCollection
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Fields in org.eclipse.collections.impl.collection.mutable.primitive declared as MutableBooleanCollection Modifier and Type Field Description private MutableBooleanCollection
AbstractSynchronizedBooleanCollection. collection
private MutableBooleanCollection
AbstractUnmodifiableBooleanCollection. collection
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableBooleanCollection Modifier and Type Method Description MutableBooleanCollection
AbstractSynchronizedBooleanCollection. asSynchronized()
MutableBooleanCollection
AbstractUnmodifiableBooleanCollection. asSynchronized()
MutableBooleanCollection
AbstractSynchronizedBooleanCollection. asUnmodifiable()
MutableBooleanCollection
AbstractUnmodifiableBooleanCollection. asUnmodifiable()
protected MutableBooleanCollection
AbstractSynchronizedBooleanCollection. getBooleanCollection()
protected MutableBooleanCollection
AbstractUnmodifiableBooleanCollection. getBooleanCollection()
MutableBooleanCollection
SynchronizedBooleanCollection. newEmpty()
MutableBooleanCollection
UnmodifiableBooleanCollection. newEmpty()
MutableBooleanCollection
AbstractSynchronizedBooleanCollection. reject(BooleanPredicate predicate)
MutableBooleanCollection
AbstractUnmodifiableBooleanCollection. reject(BooleanPredicate predicate)
MutableBooleanCollection
AbstractSynchronizedBooleanCollection. select(BooleanPredicate predicate)
MutableBooleanCollection
AbstractUnmodifiableBooleanCollection. select(BooleanPredicate predicate)
MutableBooleanCollection
AbstractSynchronizedBooleanCollection. with(boolean element)
MutableBooleanCollection
AbstractUnmodifiableBooleanCollection. with(boolean element)
MutableBooleanCollection
AbstractSynchronizedBooleanCollection. withAll(BooleanIterable elements)
MutableBooleanCollection
AbstractUnmodifiableBooleanCollection. withAll(BooleanIterable elements)
MutableBooleanCollection
AbstractSynchronizedBooleanCollection. without(boolean element)
MutableBooleanCollection
AbstractUnmodifiableBooleanCollection. without(boolean element)
MutableBooleanCollection
AbstractSynchronizedBooleanCollection. withoutAll(BooleanIterable elements)
MutableBooleanCollection
AbstractUnmodifiableBooleanCollection. withoutAll(BooleanIterable elements)
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableBooleanCollection Modifier and Type Method Description static SynchronizedBooleanCollection
SynchronizedBooleanCollection. of(MutableBooleanCollection collection)
This method will take a MutableBooleanCollection and wrap it directly in a SynchronizedBooleanCollection.static SynchronizedBooleanCollection
SynchronizedBooleanCollection. of(MutableBooleanCollection collection, java.lang.Object lock)
This method will take a MutableBooleanCollection and wrap it directly in a SynchronizedBooleanCollection.static UnmodifiableBooleanCollection
UnmodifiableBooleanCollection. of(MutableBooleanCollection collection)
This method will take a MutableBooleanCollection and wrap it directly in a UnmodifiableBooleanCollection.Constructors in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableBooleanCollection Constructor Description AbstractSynchronizedBooleanCollection(MutableBooleanCollection collection)
AbstractSynchronizedBooleanCollection(MutableBooleanCollection collection, java.lang.Object newLock)
AbstractUnmodifiableBooleanCollection(MutableBooleanCollection collection)
SynchronizedBooleanCollection(MutableBooleanCollection collection)
SynchronizedBooleanCollection(MutableBooleanCollection collection, java.lang.Object newLock)
UnmodifiableBooleanCollection(MutableBooleanCollection collection)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableBooleanCollection Modifier and Type Method Description static <T,R extends MutableBooleanCollection>
java.util.stream.Collector<T,?,R>Collectors2. collectBoolean(BooleanFunction<? super T> function, java.util.function.Supplier<R> supplier)
Returns a new MutableBooleanCollection with the results of applying the specified BooleanFunction on each element of the source. -
Uses of MutableBooleanCollection in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive with type parameters of type MutableBooleanCollection Modifier and Type Field Description private Function0<MutableBooleanCollection>
ChunkBooleanIterable.ChunkBooleanIterator. speciesNewStrategy
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RFastList. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RFastList. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableBooleanCollection Modifier and Type Class Description class
BooleanArrayList
BooleanArrayList is similar toFastList
, and is memory-optimized for boolean primitives.class
SynchronizedBooleanList
A synchronized view of aMutableBooleanList
.class
UnmodifiableBooleanList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RSynchronizedBooleanList. rejectWithIndex(BooleanIntPredicate predicate, R target)
Returns a new MutableBooleanCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableBooleanCollection>
RUnmodifiableBooleanList. rejectWithIndex(BooleanIntPredicate predicate, R target)
Returns a new MutableBooleanCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableBooleanCollection>
RSynchronizedBooleanList. selectWithIndex(BooleanIntPredicate predicate, R target)
Returns a new MutableBooleanCollection including all elements with corresponding indexes matching the specified predicate.<R extends MutableBooleanCollection>
RUnmodifiableBooleanList. selectWithIndex(BooleanIntPredicate predicate, R target)
Returns a new MutableBooleanCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableBooleanCollection in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RImmutableByteObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableByteObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableByteObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableCharObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableCharObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableCharObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableDoubleObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableDoubleObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableDoubleObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableFloatObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableFloatObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableFloatObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableIntObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableIntObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableIntObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableLongObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableLongObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableLongObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableShortObjectEmptyMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableShortObjectHashMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableShortObjectSingletonMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableByteObjectEmptyMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RImmutableCharObjectEmptyMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RImmutableDoubleObjectEmptyMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RImmutableFloatObjectEmptyMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RImmutableIntObjectEmptyMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RImmutableLongObjectEmptyMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RImmutableShortObjectEmptyMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableBooleanCollection Modifier and Type Method Description MutableBooleanCollection
ImmutableByteBooleanEmptyMap. values()
MutableBooleanCollection
ImmutableByteBooleanHashMap. values()
MutableBooleanCollection
ImmutableByteBooleanSingletonMap. values()
MutableBooleanCollection
ImmutableCharBooleanEmptyMap. values()
MutableBooleanCollection
ImmutableCharBooleanHashMap. values()
MutableBooleanCollection
ImmutableCharBooleanSingletonMap. values()
MutableBooleanCollection
ImmutableDoubleBooleanEmptyMap. values()
MutableBooleanCollection
ImmutableDoubleBooleanHashMap. values()
MutableBooleanCollection
ImmutableDoubleBooleanSingletonMap. values()
MutableBooleanCollection
ImmutableFloatBooleanEmptyMap. values()
MutableBooleanCollection
ImmutableFloatBooleanHashMap. values()
MutableBooleanCollection
ImmutableFloatBooleanSingletonMap. values()
MutableBooleanCollection
ImmutableIntBooleanEmptyMap. values()
MutableBooleanCollection
ImmutableIntBooleanHashMap. values()
MutableBooleanCollection
ImmutableIntBooleanSingletonMap. values()
MutableBooleanCollection
ImmutableLongBooleanEmptyMap. values()
MutableBooleanCollection
ImmutableLongBooleanHashMap. values()
MutableBooleanCollection
ImmutableLongBooleanSingletonMap. values()
MutableBooleanCollection
ImmutableObjectBooleanEmptyMap. values()
MutableBooleanCollection
ImmutableObjectBooleanHashMap. values()
MutableBooleanCollection
ImmutableObjectBooleanSingletonMap. values()
MutableBooleanCollection
ImmutableShortBooleanEmptyMap. values()
MutableBooleanCollection
ImmutableShortBooleanHashMap. values()
MutableBooleanCollection
ImmutableShortBooleanSingletonMap. values()
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RUnmodifiableMutableMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableMutableMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableBooleanCollection Modifier and Type Class Description protected class
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection
private class
ByteBooleanHashMap.ValuesCollection
private class
CharBooleanHashMap.ValuesCollection
private class
DoubleBooleanHashMap.ValuesCollection
private class
FloatBooleanHashMap.ValuesCollection
private class
IntBooleanHashMap.ValuesCollection
private class
LongBooleanHashMap.ValuesCollection
private class
ObjectBooleanHashMap.ValuesCollection
private class
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection
private class
ShortBooleanHashMap.ValuesCollection
Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RSynchronizedByteObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RSynchronizedCharObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RSynchronizedDoubleObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RSynchronizedFloatObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RSynchronizedIntObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RSynchronizedLongObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RSynchronizedShortObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableByteObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableCharObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableDoubleObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableFloatObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableIntObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableLongObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableShortObjectMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RSynchronizedByteObjectMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RSynchronizedCharObjectMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RSynchronizedDoubleObjectMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RSynchronizedFloatObjectMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RSynchronizedIntObjectMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RSynchronizedLongObjectMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RSynchronizedShortObjectMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableBooleanCollection Modifier and Type Method Description MutableBooleanCollection
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. asSynchronized()
MutableBooleanCollection
ObjectBooleanHashMap.ValuesCollection. asSynchronized()
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection. asSynchronized()
MutableBooleanCollection
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. asUnmodifiable()
MutableBooleanCollection
ObjectBooleanHashMap.ValuesCollection. asUnmodifiable()
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection. asUnmodifiable()
MutableBooleanCollection
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. reject(BooleanPredicate predicate)
MutableBooleanCollection
ObjectBooleanHashMap. reject(BooleanPredicate predicate)
MutableBooleanCollection
ObjectBooleanHashMap.ValuesCollection. reject(BooleanPredicate predicate)
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy. reject(BooleanPredicate predicate)
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection. reject(BooleanPredicate predicate)
MutableBooleanCollection
SynchronizedObjectBooleanMap. reject(BooleanPredicate predicate)
MutableBooleanCollection
UnmodifiableObjectBooleanMap. reject(BooleanPredicate predicate)
MutableBooleanCollection
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. select(BooleanPredicate predicate)
MutableBooleanCollection
ObjectBooleanHashMap. select(BooleanPredicate predicate)
MutableBooleanCollection
ObjectBooleanHashMap.ValuesCollection. select(BooleanPredicate predicate)
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy. select(BooleanPredicate predicate)
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection. select(BooleanPredicate predicate)
MutableBooleanCollection
SynchronizedObjectBooleanMap. select(BooleanPredicate predicate)
MutableBooleanCollection
UnmodifiableObjectBooleanMap. select(BooleanPredicate predicate)
MutableBooleanCollection
ByteBooleanHashMap. values()
MutableBooleanCollection
CharBooleanHashMap. values()
MutableBooleanCollection
DoubleBooleanHashMap. values()
MutableBooleanCollection
FloatBooleanHashMap. values()
MutableBooleanCollection
IntBooleanHashMap. values()
MutableBooleanCollection
LongBooleanHashMap. values()
MutableBooleanCollection
ObjectBooleanHashMap. values()
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy. values()
MutableBooleanCollection
ShortBooleanHashMap. values()
MutableBooleanCollection
SynchronizedByteBooleanMap. values()
MutableBooleanCollection
SynchronizedCharBooleanMap. values()
MutableBooleanCollection
SynchronizedDoubleBooleanMap. values()
MutableBooleanCollection
SynchronizedFloatBooleanMap. values()
MutableBooleanCollection
SynchronizedIntBooleanMap. values()
MutableBooleanCollection
SynchronizedLongBooleanMap. values()
MutableBooleanCollection
SynchronizedObjectBooleanMap. values()
MutableBooleanCollection
SynchronizedShortBooleanMap. values()
MutableBooleanCollection
UnmodifiableByteBooleanMap. values()
MutableBooleanCollection
UnmodifiableCharBooleanMap. values()
MutableBooleanCollection
UnmodifiableDoubleBooleanMap. values()
MutableBooleanCollection
UnmodifiableFloatBooleanMap. values()
MutableBooleanCollection
UnmodifiableIntBooleanMap. values()
MutableBooleanCollection
UnmodifiableLongBooleanMap. values()
MutableBooleanCollection
UnmodifiableObjectBooleanMap. values()
MutableBooleanCollection
UnmodifiableShortBooleanMap. values()
MutableBooleanCollection
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. with(boolean element)
MutableBooleanCollection
ObjectBooleanHashMap.ValuesCollection. with(boolean element)
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection. with(boolean element)
MutableBooleanCollection
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. withAll(BooleanIterable elements)
MutableBooleanCollection
ObjectBooleanHashMap.ValuesCollection. withAll(BooleanIterable elements)
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection. withAll(BooleanIterable elements)
MutableBooleanCollection
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. without(boolean element)
MutableBooleanCollection
ObjectBooleanHashMap.ValuesCollection. without(boolean element)
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection. without(boolean element)
MutableBooleanCollection
AbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. withoutAll(BooleanIterable elements)
MutableBooleanCollection
ObjectBooleanHashMap.ValuesCollection. withoutAll(BooleanIterable elements)
MutableBooleanCollection
ObjectBooleanHashMapWithHashingStrategy.ValuesCollection. withoutAll(BooleanIterable elements)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RUnmodifiableMutableOrderedMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableMutableOrderedMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RUnmodifiableTreeMap. collectBoolean(BooleanFunction<? super V> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableTreeMap. flatCollectBoolean(Function<? super V,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableBooleanCollection Modifier and Type Class Description class
BooleanHashSet
class
SynchronizedBooleanSet
A synchronized view of aMutableBooleanSet
.class
UnmodifiableBooleanSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg. -
Uses of MutableBooleanCollection in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RImmutableArrayStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
Deprecated.<R extends MutableBooleanCollection>
RImmutableEmptyStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RImmutableArrayStack. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
Deprecated.<R extends MutableBooleanCollection>
RImmutableEmptyStack. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RArrayStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RSynchronizedStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RUnmodifiableStack. collectBoolean(BooleanFunction<? super T> booleanFunction, R target)
<R extends MutableBooleanCollection>
RArrayStack. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RSynchronizedStack. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
<R extends MutableBooleanCollection>
RUnmodifiableStack. flatCollectBoolean(Function<? super T,? extends BooleanIterable> function, R target)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with type parameters of type MutableBooleanCollection Modifier and Type Method Description <R extends MutableBooleanCollection>
RSynchronizedBooleanStack. rejectWithIndex(BooleanIntPredicate predicate, R target)
Returns a new MutableBooleanCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableBooleanCollection>
RSynchronizedBooleanStack. selectWithIndex(BooleanIntPredicate predicate, R target)
Returns a new MutableBooleanCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableBooleanCollection in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableBooleanCollection Modifier and Type Method Description static <T,R extends MutableBooleanCollection>
RArrayIterate. collectBoolean(T[] objectArray, BooleanFunction<? super T> booleanFunction, R target)
static <T,R extends MutableBooleanCollection>
RArrayListIterate. collectBoolean(java.util.ArrayList<T> list, BooleanFunction<? super T> booleanFunction, R target)
static <T,R extends MutableBooleanCollection>
RIterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction, R target)
Same asIterate.collectBoolean(Iterable, BooleanFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T,R extends MutableBooleanCollection>
RListIterate. collectBoolean(java.util.List<T> list, BooleanFunction<? super T> booleanFunction, R target)
static <K,V,R extends MutableBooleanCollection>
RMapIterate. collectBoolean(java.util.Map<K,V> map, BooleanFunction<? super V> booleanFunction, R target)
private static <T,R extends MutableBooleanCollection>
RArrayListIterate. collectBooleanFromInternalArray(java.util.ArrayList<T> source, BooleanFunction<? super T> booleanFunction, int elementsToCollect, R target)
Methods in org.eclipse.collections.impl.utility that return MutableBooleanCollection Modifier and Type Method Description static <T> MutableBooleanCollection
Iterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction)
Returns a new primitiveboolean
collection with the results of applying the specified booleanFunction for each element of the iterable.static <K,V>
MutableBooleanCollectionMapIterate. collectBoolean(java.util.Map<K,V> map, BooleanFunction<? super V> booleanFunction)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableBooleanCollection Modifier and Type Method Description static <T,R extends MutableBooleanCollection>
RIterableIterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction, R target)
static <T,R extends MutableBooleanCollection>
RIteratorIterate. collectBoolean(java.util.Iterator<T> iterator, BooleanFunction<? super T> booleanFunction, R target)
static <T,R extends MutableBooleanCollection>
RRandomAccessListIterate. collectBoolean(java.util.List<T> list, BooleanFunction<? super T> booleanFunction, R target)
Methods in org.eclipse.collections.impl.utility.internal that return MutableBooleanCollection Modifier and Type Method Description static <T> MutableBooleanCollection
IterableIterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction)
static <T> MutableBooleanCollection
IteratorIterate. collectBoolean(java.util.Iterator<T> iterator, BooleanFunction<? super T> booleanFunction)
-
Uses of MutableBooleanCollection in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with type parameters of type MutableBooleanCollection Modifier and Type Method Description static <R extends MutableBooleanCollection>
RBooleanIterableIterate. reject(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)
static <R extends MutableBooleanCollection>
RBooleanIteratorIterate. reject(BooleanIterator iterator, BooleanPredicate predicate, R targetCollection)
static <R extends MutableBooleanCollection>
RBooleanIterableIterate. select(BooleanIterable iterable, BooleanPredicate predicate, R targetCollection)
static <R extends MutableBooleanCollection>
RBooleanIteratorIterate. select(BooleanIterator iterator, BooleanPredicate predicate, R targetCollection)
-