| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
BooleanIterable.toList()
Converts the BooleanIterable to a new MutableBooleanList.
|
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
MutableSortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
MutableBooleanListFactory.empty() |
MutableBooleanList |
MutableBooleanListFactory.of()
Same as
MutableBooleanListFactory.empty(). |
MutableBooleanList |
MutableBooleanListFactory.of(boolean... items)
|
MutableBooleanList |
MutableBooleanListFactory.ofAll(BooleanIterable items)
|
MutableBooleanList |
MutableBooleanListFactory.ofAll(Iterable<Boolean> iterable)
|
MutableBooleanList |
MutableBooleanListFactory.with()
Same as
MutableBooleanListFactory.empty(). |
MutableBooleanList |
MutableBooleanListFactory.with(boolean... items)
Creates a new list using the passed
items argument as the backing store. |
MutableBooleanList |
MutableBooleanListFactory.withAll(BooleanIterable items) |
MutableBooleanList |
MutableBooleanListFactory.withAll(Iterable<Boolean> iterable) |
default MutableBooleanList |
MutableBooleanListFactory.withInitialCapacity(int capacity)
Same as
MutableBooleanListFactory.empty(). |
default MutableBooleanList |
MutableBooleanListFactory.wrapCopy(boolean... array)
Creates a new list by first copying the array passed in.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableBooleanList |
MutableList.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
MutableBooleanList.asSynchronized() |
MutableBooleanList |
MutableBooleanList.asUnmodifiable() |
MutableBooleanList |
MutableBooleanList.distinct() |
default MutableBooleanList |
MutableBooleanList.newEmpty()
Creates a new empty mutable version of the same List type.
|
MutableBooleanList |
MutableBooleanList.reject(BooleanPredicate predicate) |
default MutableBooleanList |
MutableBooleanList.rejectWithIndex(BooleanIntPredicate predicate)
Returns a new MutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.
|
MutableBooleanList |
MutableBooleanList.reverseThis() |
MutableBooleanList |
MutableBooleanList.select(BooleanPredicate predicate) |
default MutableBooleanList |
MutableBooleanList.selectWithIndex(BooleanIntPredicate predicate)
Returns a new MutableBooleanList including all elements with corresponding indexes matching the specified predicate.
|
MutableBooleanList |
MutableBooleanList.subList(int fromIndex,
int toIndex) |
default MutableBooleanList |
MutableBooleanList.tap(BooleanProcedure procedure) |
MutableBooleanList |
MutableBooleanList.toReversed() |
MutableBooleanList |
MutableBooleanList.with(boolean element) |
MutableBooleanList |
MutableBooleanList.withAll(BooleanIterable elements) |
MutableBooleanList |
MutableBooleanList.without(boolean element) |
MutableBooleanList |
MutableBooleanList.withoutAll(BooleanIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
MutableOrderedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
MutableSortedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
MutableSortedSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Copyright © 2004–2023. All rights reserved.