Uses of Interface
org.eclipse.collections.api.set.primitive.MutableBooleanSet
-
Packages that use MutableBooleanSet 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.factory.set.primitive This package contains factory API for creating primitive set instances.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.primitive 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 MutableBooleanSet Modifier and Type Method Description MutableBooleanSetBooleanIterable. 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 MutableBooleanSet Modifier and Type Method Description MutableBooleanSetMutableBooleanBag. 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 MutableBooleanSet Modifier and Type Method Description MutableBooleanSetMutableBooleanSetFactory. empty()MutableBooleanSetMutableBooleanSetFactory. of()Same asMutableBooleanSetFactory.empty().MutableBooleanSetMutableBooleanSetFactory. of(boolean... items)MutableBooleanSetMutableBooleanSetFactory. ofAll(Iterable<Boolean> iterable)MutableBooleanSetMutableBooleanSetFactory. ofAll(BooleanIterable items)MutableBooleanSetMutableBooleanSetFactory. with()Same asMutableBooleanSetFactory.empty().MutableBooleanSetMutableBooleanSetFactory. with(boolean... items)MutableBooleanSetMutableBooleanSetFactory. withAll(Iterable<Boolean> iterable)MutableBooleanSetMutableBooleanSetFactory. withAll(BooleanIterable items) -
Uses of MutableBooleanSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableBooleanSet Modifier and Type Method Description default 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 MutableBooleanSet Modifier and Type Method Description MutableBooleanSetMutableBooleanSet. asSynchronized()MutableBooleanSetMutableBooleanSet. 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.MutableBooleanSetMutableBooleanSet. reject(BooleanPredicate predicate)MutableBooleanSetMutableBooleanSet. 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)MutableBooleanSetMutableBooleanSet. with(boolean element)MutableBooleanSetMutableBooleanSet. withAll(BooleanIterable elements)MutableBooleanSetMutableBooleanSet. without(boolean element)MutableBooleanSetMutableBooleanSet. withoutAll(BooleanIterable elements)
-