Uses of Interface
org.eclipse.collections.api.set.primitive.MutableBooleanSet
Packages that use MutableBooleanSet
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains factory API for creating primitive set instances.
This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains API for mutable and immutable primitive sets.
-
Uses of MutableBooleanSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableBooleanSetModifier and TypeMethodDescriptionBooleanIterable.toSet()Converts the BooleanIterable to a new MutableBooleanSet. -
Uses of MutableBooleanSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableBooleanSetModifier and TypeMethodDescriptionMutableBooleanBag.selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of MutableBooleanSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return MutableBooleanSetModifier and TypeMethodDescriptionMutableBooleanSetFactory.empty()MutableBooleanSetFactory.of()Same asMutableBooleanSetFactory.empty().MutableBooleanSetFactory.of(boolean... items) MutableBooleanSetFactory.ofAll(BooleanIterable items) MutableBooleanSetFactory.with()Same asMutableBooleanSetFactory.empty().MutableBooleanSetFactory.with(boolean... items) MutableBooleanSetFactory.withAll(BooleanIterable items) -
Uses of MutableBooleanSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableBooleanSetModifier and TypeMethodDescriptiondefault MutableBooleanSetMutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of MutableBooleanSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableBooleanSetModifier and TypeMethodDescriptionMutableBooleanSet.asSynchronized()MutableBooleanSet.asUnmodifiable()default MutableBooleanSetMutableBooleanSet.difference(BooleanSet set) Returns the set of all members ofthisthat are not members ofset.default MutableBooleanSetMutableBooleanSet.intersect(BooleanSet set) Returns the set of all objects that are members of boththisandset.default MutableBooleanSetMutableBooleanSet.newEmpty()Creates a new empty mutable version of the same Set type.MutableBooleanSet.reject(BooleanPredicate predicate) MutableBooleanSet.select(BooleanPredicate predicate) default MutableBooleanSetMutableBooleanSet.symmetricDifference(BooleanSet set) Returns the set of all objects that are a member of exactly one ofthisandset(elements which are in one of the sets, but not in both).default MutableBooleanSetMutableBooleanSet.tap(BooleanProcedure procedure) default MutableBooleanSetMutableBooleanSet.union(BooleanSet set) MutableBooleanSet.with(boolean element) MutableBooleanSet.withAll(BooleanIterable elements) MutableBooleanSet.without(boolean element) MutableBooleanSet.withoutAll(BooleanIterable elements)