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. -
-
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.
-