| Package | Description |
|---|---|
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| 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.partition.list |
This package contains interfaces for
PartitionList. |
| Modifier and Type | Method and Description |
|---|---|
PartitionList<T> |
ListIterable.partition(Predicate<? super T> predicate) |
PartitionList<T> |
ListIterable.partitionWhile(Predicate<? super T> predicate)
Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.
|
<P> PartitionList<T> |
ListIterable.partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
PartitionList<V> |
OrderedMap.partition(Predicate<? super V> predicate) |
PartitionList<V> |
OrderedMap.partitionWhile(Predicate<? super V> predicate) |
<P> PartitionList<V> |
OrderedMap.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
| Modifier and Type | Method and Description |
|---|---|
PartitionList<V> |
SortedMapIterable.partition(Predicate<? super V> predicate) |
PartitionList<V> |
SortedMapIterable.partitionWhile(Predicate<? super V> predicate) |
<P> PartitionList<V> |
SortedMapIterable.partitionWith(Predicate2<? super V,? super P> predicate,
P parameter) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
PartitionImmutableList<T>
A PartitionImmutableList is the result of splitting an immutable list into two immutable lists based on a Predicate.
|
interface |
PartitionMutableList<T>
A PartitionMutableList is the result of splitting a mutable list into two mutable lists based on a Predicate.
|
Copyright © 2004–2020. All rights reserved.