| 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.collection | |
| org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
| org.eclipse.collections.api.ordered.primitive | |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
default <R extends MutableBooleanCollection> |
RichIterable.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target)
Same as
RichIterable.collectBoolean(BooleanFunction), except that the results are gathered into the specified target
collection. |
default <R extends MutableBooleanCollection> |
BooleanIterable.collectBoolean(BooleanToBooleanFunction function,
R target)
Returns the target
MutableBooleanCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableBooleanCollection> |
ByteIterable.collectBoolean(ByteToBooleanFunction function,
R target)
Returns the target
MutableBooleanCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableBooleanCollection> |
CharIterable.collectBoolean(CharToBooleanFunction function,
R target)
Returns the target
MutableBooleanCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableBooleanCollection> |
DoubleIterable.collectBoolean(DoubleToBooleanFunction function,
R target)
Returns the target
MutableBooleanCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableBooleanCollection> |
FloatIterable.collectBoolean(FloatToBooleanFunction function,
R target)
Returns the target
MutableBooleanCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableBooleanCollection> |
IntIterable.collectBoolean(IntToBooleanFunction function,
R target)
Returns the target
MutableBooleanCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableBooleanCollection> |
LongIterable.collectBoolean(LongToBooleanFunction function,
R target)
Returns the target
MutableBooleanCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableBooleanCollection> |
ShortIterable.collectBoolean(ShortToBooleanFunction function,
R target)
Returns the target
MutableBooleanCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableBooleanCollection> |
RichIterable.flatCollectBoolean(Function<? super T,? extends BooleanIterable> function,
R target)
Same as flatCollect, only the results are collected into the target collection.
|
default <R extends MutableBooleanCollection> |
BooleanIterable.reject(BooleanPredicate predicate,
R target)
Same as
BooleanIterable.reject(BooleanPredicate) , only the results are added to the target MutableBooleanCollection. |
default <R extends MutableBooleanCollection> |
BooleanIterable.select(BooleanPredicate predicate,
R target)
Same as
BooleanIterable.select(BooleanPredicate) , only the results are added to the target MutableBooleanCollection. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableBooleanBag
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableBooleanCollection |
MutableCollection.collectBoolean(BooleanFunction<? super T> booleanFunction)
Returns a new primitive
boolean iterable with the results of applying the specified function on each element
of the source collection. |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanCollection |
MutableBooleanCollection.asSynchronized() |
MutableBooleanCollection |
MutableBooleanCollection.asUnmodifiable() |
default MutableBooleanCollection |
MutableBooleanCollection.newEmpty()
Creates a new empty mutable version of the same collection type.
|
MutableBooleanCollection |
MutableBooleanCollection.reject(BooleanPredicate predicate) |
MutableBooleanCollection |
MutableBooleanCollection.select(BooleanPredicate predicate) |
default MutableBooleanCollection |
MutableBooleanCollection.tap(BooleanProcedure procedure) |
MutableBooleanCollection |
MutableBooleanCollection.with(boolean element) |
MutableBooleanCollection |
MutableBooleanCollection.withAll(BooleanIterable elements) |
MutableBooleanCollection |
MutableBooleanCollection.without(boolean element) |
MutableBooleanCollection |
MutableBooleanCollection.withoutAll(BooleanIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableBooleanList
This file was automatically generated from template file mutablePrimitiveList.stg.
|
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanCollection |
MutableObjectBooleanMap.reject(BooleanPredicate predicate) |
MutableBooleanCollection |
MutableObjectBooleanMap.select(BooleanPredicate predicate) |
MutableBooleanCollection |
BooleanValuesMap.values()
Returns the values in this map as a separate collection.
|
MutableBooleanCollection |
ObjectBooleanMap.values()
Returns the values in this map as a separate collection.
|
| Modifier and Type | Method and Description |
|---|---|
default <R extends MutableBooleanCollection> |
OrderedBooleanIterable.rejectWithIndex(BooleanIntPredicate predicate,
R target)
Returns a new MutableBooleanCollection excluding all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableBooleanCollection> |
OrderedBooleanIterable.selectWithIndex(BooleanIntPredicate predicate,
R target)
Returns a new MutableBooleanCollection including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableBooleanSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
Copyright © 2004–2022. All rights reserved.