| Package | Description |
|---|---|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| 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 |
|---|---|
BooleanSet |
BooleanBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanSet |
UnsortedSetIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableBooleanSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
|
interface |
MutableBooleanSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
| Modifier and Type | Method and Description |
|---|---|
BooleanSet |
BooleanSet.difference(BooleanSet set)
Returns the set of all members of
this that are not members of set. |
BooleanSet |
BooleanSet.freeze()
Returns a frozen copy of this set.
|
BooleanSet |
MutableBooleanSet.freeze()
Returns a frozen copy of this set.
|
BooleanSet |
BooleanSet.intersect(BooleanSet set)
Returns the set of all objects that are members of both
this and set. |
BooleanSet |
BooleanSet.reject(BooleanPredicate predicate) |
BooleanSet |
BooleanSet.select(BooleanPredicate predicate) |
BooleanSet |
BooleanSet.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 BooleanSet |
BooleanSet.tap(BooleanProcedure procedure) |
BooleanSet |
BooleanSet.union(BooleanSet set) |
| Modifier and Type | Method and Description |
|---|---|
LazyIterable<BooleanBooleanPair> |
BooleanSet.cartesianProduct(BooleanSet set)
Returns the set whose members are all possible ordered pairs (a, b) where a is a member of
this and b is a
member of set. |
BooleanSet |
BooleanSet.difference(BooleanSet set)
Returns the set of all members of
this that are not members of set. |
default MutableBooleanSet |
MutableBooleanSet.difference(BooleanSet set)
Returns the set of all members of
this that are not members of set. |
default ImmutableBooleanSet |
ImmutableBooleanSet.difference(BooleanSet set)
Returns the set of all members of
this that are not members of set. |
BooleanSet |
BooleanSet.intersect(BooleanSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableBooleanSet |
MutableBooleanSet.intersect(BooleanSet set)
Returns the set of all objects that are members of both
this and set. |
default ImmutableBooleanSet |
ImmutableBooleanSet.intersect(BooleanSet set)
Returns the set of all objects that are members of both
this and set. |
default boolean |
BooleanSet.isProperSubsetOf(BooleanSet set)
Returns true if all the members of
this are also members of set and the
two sets are not equal. |
default boolean |
BooleanSet.isSubsetOf(BooleanSet set)
Returns true if all the members of
this are also members of set. |
BooleanSet |
BooleanSet.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.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.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). |
BooleanSet |
BooleanSet.union(BooleanSet set) |
default MutableBooleanSet |
MutableBooleanSet.union(BooleanSet set) |
default ImmutableBooleanSet |
ImmutableBooleanSet.union(BooleanSet set) |
Copyright © 2004–2021. All rights reserved.