| 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 of
Set. |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanSet |
BooleanIterable.toSet()
Converts the BooleanIterable to a new MutableBooleanSet.
|
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanSet |
MutableBooleanBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanSet |
MutableBooleanSetFactory.empty() |
MutableBooleanSet |
MutableBooleanSetFactory.of()
Same as
MutableBooleanSetFactory.empty(). |
MutableBooleanSet |
MutableBooleanSetFactory.of(boolean... items)
|
MutableBooleanSet |
MutableBooleanSetFactory.ofAll(BooleanIterable items)
|
MutableBooleanSet |
MutableBooleanSetFactory.ofAll(Iterable<Boolean> iterable)
|
MutableBooleanSet |
MutableBooleanSetFactory.with()
Same as
MutableBooleanSetFactory.empty(). |
MutableBooleanSet |
MutableBooleanSetFactory.with(boolean... items) |
MutableBooleanSet |
MutableBooleanSetFactory.withAll(BooleanIterable items) |
MutableBooleanSet |
MutableBooleanSetFactory.withAll(Iterable<Boolean> iterable) |
| Modifier and Type | Method and Description |
|---|---|
default MutableBooleanSet |
MutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanSet |
MutableBooleanSet.asSynchronized() |
MutableBooleanSet |
MutableBooleanSet.asUnmodifiable() |
default MutableBooleanSet |
MutableBooleanSet.difference(BooleanSet set)
Returns the set of all members of
this that are not members of set. |
default MutableBooleanSet |
MutableBooleanSet.intersect(BooleanSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableBooleanSet |
MutableBooleanSet.newEmpty()
Creates a new empty mutable version of the same Set type.
|
MutableBooleanSet |
MutableBooleanSet.reject(BooleanPredicate predicate) |
MutableBooleanSet |
MutableBooleanSet.select(BooleanPredicate predicate) |
default MutableBooleanSet |
MutableBooleanSet.symmetricDifference(BooleanSet set)
Returns the set of all objects that are a member of exactly one of
this and set (elements which
are in one of the sets, but not in both). |
default MutableBooleanSet |
MutableBooleanSet.tap(BooleanProcedure procedure) |
default MutableBooleanSet |
MutableBooleanSet.union(BooleanSet set) |
MutableBooleanSet |
MutableBooleanSet.with(boolean element) |
MutableBooleanSet |
MutableBooleanSet.withAll(BooleanIterable elements) |
MutableBooleanSet |
MutableBooleanSet.without(boolean element) |
MutableBooleanSet |
MutableBooleanSet.withoutAll(BooleanIterable elements) |
Copyright © 2004–2022. All rights reserved.