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 theMutableBiMapinterface.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 theMutableCollectioninterface.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 theMutableListinterface.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 theMutableMapinterface.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 theMutableSortedMapinterface.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 theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.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 targetMutableBooleanCollectionwith 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 targetMutableBooleanCollectionwith 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 targetMutableBooleanCollectionwith 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 targetMutableBooleanCollectionwith 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 targetMutableBooleanCollectionwith 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 targetMutableBooleanCollectionwith 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 targetMutableBooleanCollectionwith 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 specifiedtargetcollection.default <R extends MutableBooleanCollection>
RShortIterable. collectBoolean(ShortToBooleanFunction function, R target)Returns the targetMutableBooleanCollectionwith 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 interfaceMutableBooleanBagThis 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 MutableBooleanCollectionMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)Returns a new primitivebooleaniterable 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 MutableBooleanCollectionMutableBooleanCollection. asSynchronized()MutableBooleanCollectionMutableBooleanCollection. asUnmodifiable()default MutableBooleanCollectionMutableBooleanCollection. newEmpty()Creates a new empty mutable version of the same collection type.MutableBooleanCollectionMutableBooleanCollection. reject(BooleanPredicate predicate)MutableBooleanCollectionMutableBooleanCollection. select(BooleanPredicate predicate)default MutableBooleanCollectionMutableBooleanCollection. tap(BooleanProcedure procedure)MutableBooleanCollectionMutableBooleanCollection. with(boolean element)MutableBooleanCollectionMutableBooleanCollection. withAll(BooleanIterable elements)MutableBooleanCollectionMutableBooleanCollection. without(boolean element)MutableBooleanCollectionMutableBooleanCollection. 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 interfaceMutableBooleanListThis 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 MutableBooleanCollectionMutableObjectBooleanMap. reject(BooleanPredicate predicate)MutableBooleanCollectionMutableObjectBooleanMap. select(BooleanPredicate predicate)MutableBooleanCollectionBooleanValuesMap. values()Returns the values in this map as a separate collection.MutableBooleanCollectionObjectBooleanMap. 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 interfaceMutableBooleanSetThis 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 classBooleanHashBagBooleanHashBag is similar toHashBag, and is memory-optimized for boolean primitives.classSynchronizedBooleanBagA synchronized view of aMutableBooleanBag.classUnmodifiableBooleanBagThis 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 MutableBooleanCollectionCollectBooleanProcedure. booleanCollectionMethods in org.eclipse.collections.impl.block.procedure.primitive that return MutableBooleanCollection Modifier and Type Method Description MutableBooleanCollectionCollectBooleanProcedure. 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 MutableBooleanCollectionAbstractSynchronizedMutableCollection. collectBoolean(BooleanFunction<? super T> booleanFunction)MutableBooleanCollectionAbstractUnmodifiableMutableCollection. 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 classAbstractSynchronizedBooleanCollectionThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classAbstractUnmodifiableBooleanCollectionThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classSynchronizedBooleanCollectionThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classUnmodifiableBooleanCollectionThis 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 MutableBooleanCollectionAbstractSynchronizedBooleanCollection. collectionprivate MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. collectionMethods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableBooleanCollection Modifier and Type Method Description MutableBooleanCollectionAbstractSynchronizedBooleanCollection. asSynchronized()MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. asSynchronized()MutableBooleanCollectionAbstractSynchronizedBooleanCollection. asUnmodifiable()MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. asUnmodifiable()protected MutableBooleanCollectionAbstractSynchronizedBooleanCollection. getBooleanCollection()protected MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. getBooleanCollection()MutableBooleanCollectionSynchronizedBooleanCollection. newEmpty()MutableBooleanCollectionUnmodifiableBooleanCollection. newEmpty()MutableBooleanCollectionAbstractSynchronizedBooleanCollection. reject(BooleanPredicate predicate)MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. reject(BooleanPredicate predicate)MutableBooleanCollectionAbstractSynchronizedBooleanCollection. select(BooleanPredicate predicate)MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. select(BooleanPredicate predicate)MutableBooleanCollectionAbstractSynchronizedBooleanCollection. with(boolean element)MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. with(boolean element)MutableBooleanCollectionAbstractSynchronizedBooleanCollection. withAll(BooleanIterable elements)MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. withAll(BooleanIterable elements)MutableBooleanCollectionAbstractSynchronizedBooleanCollection. without(boolean element)MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. without(boolean element)MutableBooleanCollectionAbstractSynchronizedBooleanCollection. withoutAll(BooleanIterable elements)MutableBooleanCollectionAbstractUnmodifiableBooleanCollection. withoutAll(BooleanIterable elements)Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableBooleanCollection Modifier and Type Method Description static SynchronizedBooleanCollectionSynchronizedBooleanCollection. of(MutableBooleanCollection collection)This method will take a MutableBooleanCollection and wrap it directly in a SynchronizedBooleanCollection.static SynchronizedBooleanCollectionSynchronizedBooleanCollection. of(MutableBooleanCollection collection, java.lang.Object lock)This method will take a MutableBooleanCollection and wrap it directly in a SynchronizedBooleanCollection.static UnmodifiableBooleanCollectionUnmodifiableBooleanCollection. 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 classBooleanArrayListBooleanArrayList is similar toFastList, and is memory-optimized for boolean primitives.classSynchronizedBooleanListA synchronized view of aMutableBooleanList.classUnmodifiableBooleanListThis 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 MutableBooleanCollectionImmutableByteBooleanEmptyMap. values()MutableBooleanCollectionImmutableByteBooleanHashMap. values()MutableBooleanCollectionImmutableByteBooleanSingletonMap. values()MutableBooleanCollectionImmutableCharBooleanEmptyMap. values()MutableBooleanCollectionImmutableCharBooleanHashMap. values()MutableBooleanCollectionImmutableCharBooleanSingletonMap. values()MutableBooleanCollectionImmutableDoubleBooleanEmptyMap. values()MutableBooleanCollectionImmutableDoubleBooleanHashMap. values()MutableBooleanCollectionImmutableDoubleBooleanSingletonMap. values()MutableBooleanCollectionImmutableFloatBooleanEmptyMap. values()MutableBooleanCollectionImmutableFloatBooleanHashMap. values()MutableBooleanCollectionImmutableFloatBooleanSingletonMap. values()MutableBooleanCollectionImmutableIntBooleanEmptyMap. values()MutableBooleanCollectionImmutableIntBooleanHashMap. values()MutableBooleanCollectionImmutableIntBooleanSingletonMap. values()MutableBooleanCollectionImmutableLongBooleanEmptyMap. values()MutableBooleanCollectionImmutableLongBooleanHashMap. values()MutableBooleanCollectionImmutableLongBooleanSingletonMap. values()MutableBooleanCollectionImmutableObjectBooleanEmptyMap. values()MutableBooleanCollectionImmutableObjectBooleanHashMap. values()MutableBooleanCollectionImmutableObjectBooleanSingletonMap. values()MutableBooleanCollectionImmutableShortBooleanEmptyMap. values()MutableBooleanCollectionImmutableShortBooleanHashMap. values()MutableBooleanCollectionImmutableShortBooleanSingletonMap. 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 classAbstractMutableBooleanValuesMap.AbstractBooleanValuesCollectionprivate classByteBooleanHashMap.ValuesCollectionprivate classCharBooleanHashMap.ValuesCollectionprivate classDoubleBooleanHashMap.ValuesCollectionprivate classFloatBooleanHashMap.ValuesCollectionprivate classIntBooleanHashMap.ValuesCollectionprivate classLongBooleanHashMap.ValuesCollectionprivate classObjectBooleanHashMap.ValuesCollectionprivate classObjectBooleanHashMapWithHashingStrategy.ValuesCollectionprivate classShortBooleanHashMap.ValuesCollectionMethods 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 MutableBooleanCollectionAbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. asSynchronized()MutableBooleanCollectionObjectBooleanHashMap.ValuesCollection. asSynchronized()MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy.ValuesCollection. asSynchronized()MutableBooleanCollectionAbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. asUnmodifiable()MutableBooleanCollectionObjectBooleanHashMap.ValuesCollection. asUnmodifiable()MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy.ValuesCollection. asUnmodifiable()MutableBooleanCollectionAbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. reject(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMap. reject(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMap.ValuesCollection. reject(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy. reject(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy.ValuesCollection. reject(BooleanPredicate predicate)MutableBooleanCollectionSynchronizedObjectBooleanMap. reject(BooleanPredicate predicate)MutableBooleanCollectionUnmodifiableObjectBooleanMap. reject(BooleanPredicate predicate)MutableBooleanCollectionAbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. select(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMap. select(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMap.ValuesCollection. select(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy. select(BooleanPredicate predicate)MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy.ValuesCollection. select(BooleanPredicate predicate)MutableBooleanCollectionSynchronizedObjectBooleanMap. select(BooleanPredicate predicate)MutableBooleanCollectionUnmodifiableObjectBooleanMap. select(BooleanPredicate predicate)MutableBooleanCollectionByteBooleanHashMap. values()MutableBooleanCollectionCharBooleanHashMap. values()MutableBooleanCollectionDoubleBooleanHashMap. values()MutableBooleanCollectionFloatBooleanHashMap. values()MutableBooleanCollectionIntBooleanHashMap. values()MutableBooleanCollectionLongBooleanHashMap. values()MutableBooleanCollectionObjectBooleanHashMap. values()MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy. values()MutableBooleanCollectionShortBooleanHashMap. values()MutableBooleanCollectionSynchronizedByteBooleanMap. values()MutableBooleanCollectionSynchronizedCharBooleanMap. values()MutableBooleanCollectionSynchronizedDoubleBooleanMap. values()MutableBooleanCollectionSynchronizedFloatBooleanMap. values()MutableBooleanCollectionSynchronizedIntBooleanMap. values()MutableBooleanCollectionSynchronizedLongBooleanMap. values()MutableBooleanCollectionSynchronizedObjectBooleanMap. values()MutableBooleanCollectionSynchronizedShortBooleanMap. values()MutableBooleanCollectionUnmodifiableByteBooleanMap. values()MutableBooleanCollectionUnmodifiableCharBooleanMap. values()MutableBooleanCollectionUnmodifiableDoubleBooleanMap. values()MutableBooleanCollectionUnmodifiableFloatBooleanMap. values()MutableBooleanCollectionUnmodifiableIntBooleanMap. values()MutableBooleanCollectionUnmodifiableLongBooleanMap. values()MutableBooleanCollectionUnmodifiableObjectBooleanMap. values()MutableBooleanCollectionUnmodifiableShortBooleanMap. values()MutableBooleanCollectionAbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. with(boolean element)MutableBooleanCollectionObjectBooleanHashMap.ValuesCollection. with(boolean element)MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy.ValuesCollection. with(boolean element)MutableBooleanCollectionAbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. withAll(BooleanIterable elements)MutableBooleanCollectionObjectBooleanHashMap.ValuesCollection. withAll(BooleanIterable elements)MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy.ValuesCollection. withAll(BooleanIterable elements)MutableBooleanCollectionAbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. without(boolean element)MutableBooleanCollectionObjectBooleanHashMap.ValuesCollection. without(boolean element)MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy.ValuesCollection. without(boolean element)MutableBooleanCollectionAbstractMutableBooleanValuesMap.AbstractBooleanValuesCollection. withoutAll(BooleanIterable elements)MutableBooleanCollectionObjectBooleanHashMap.ValuesCollection. withoutAll(BooleanIterable elements)MutableBooleanCollectionObjectBooleanHashMapWithHashingStrategy.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 classBooleanHashSetclassSynchronizedBooleanSetA synchronized view of aMutableBooleanSet.classUnmodifiableBooleanSetThis 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 specifiedtargetcollection.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> MutableBooleanCollectionIterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction)Returns a new primitivebooleancollection 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 <R extends MutableBooleanCollection,T>
RInternalArrayIterate. collectBoolean(T[] items, int size, BooleanFunction<? super T> booleanFunction, R target)Adds all array elements to the target MutableBooleanCollection after using the function supplied to convert each source element to the appropriate typestatic <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> MutableBooleanCollectionIterableIterate. collectBoolean(java.lang.Iterable<T> iterable, BooleanFunction<? super T> booleanFunction)static <T> MutableBooleanCollectionIteratorIterate. 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)
-