| Package | Description |
|---|---|
| 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 |
|---|---|
ImmutableBooleanSet |
ImmutableBooleanBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanSet |
ImmutableBooleanSetFactory.empty() |
ImmutableBooleanSet |
ImmutableBooleanSetFactory.of()
Same as
ImmutableBooleanSetFactory.empty(). |
ImmutableBooleanSet |
ImmutableBooleanSetFactory.of(boolean... items)
|
ImmutableBooleanSet |
ImmutableBooleanSetFactory.of(boolean one)
|
ImmutableBooleanSet |
ImmutableBooleanSetFactory.ofAll(BooleanIterable items)
|
ImmutableBooleanSet |
ImmutableBooleanSetFactory.ofAll(Iterable<Boolean> iterable)
|
ImmutableBooleanSet |
ImmutableBooleanSetFactory.with()
Same as
ImmutableBooleanSetFactory.empty(). |
ImmutableBooleanSet |
ImmutableBooleanSetFactory.with(boolean... items) |
ImmutableBooleanSet |
ImmutableBooleanSetFactory.with(boolean one) |
ImmutableBooleanSet |
ImmutableBooleanSetFactory.withAll(BooleanIterable items) |
ImmutableBooleanSet |
ImmutableBooleanSetFactory.withAll(Iterable<Boolean> iterable) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanSet |
ImmutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
default ImmutableBooleanSet |
ImmutableBooleanSet.difference(BooleanSet set)
Returns the set of all members of
this that are not members of set. |
default ImmutableBooleanSet |
ImmutableBooleanSet.intersect(BooleanSet set)
Returns the set of all objects that are members of both
this and set. |
ImmutableBooleanSet |
ImmutableBooleanSet.newWith(boolean element) |
ImmutableBooleanSet |
ImmutableBooleanSet.newWithAll(BooleanIterable elements) |
ImmutableBooleanSet |
ImmutableBooleanSet.newWithout(boolean element) |
ImmutableBooleanSet |
ImmutableBooleanSet.newWithoutAll(BooleanIterable elements) |
ImmutableBooleanSet |
ImmutableBooleanSet.reject(BooleanPredicate predicate) |
ImmutableBooleanSet |
ImmutableBooleanSet.select(BooleanPredicate predicate) |
default ImmutableBooleanSet |
ImmutableBooleanSet.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 ImmutableBooleanSet |
ImmutableBooleanSet.tap(BooleanProcedure procedure) |
ImmutableBooleanSet |
BooleanSet.toImmutable()
Returns an immutable copy of this set.
|
ImmutableBooleanSet |
MutableBooleanSet.toImmutable()
Returns an immutable copy of this set.
|
default ImmutableBooleanSet |
ImmutableBooleanSet.union(BooleanSet set) |
Copyright © 2004–2022. All rights reserved.