Package org.eclipse.collections.api.partition
package org.eclipse.collections.api.partition
This package contains interfaces for
PartitionIterable
.
A PartitionIterable is the result of splitting an iterable into two iterables based on a Predicate
.
This package contains 3 interfaces:
-
PartitionIterable
- a read-only PartitionIterable API. -
PartitionMutableCollection
- a modifiable PartitionIterable. -
PartitionImmutableCollection
- the non-modifiable equivalent interface toPartitionMutableCollection
.
-
ClassDescriptionA PartitionImmutableCollection is the result of splitting an immutable collection into two immutable collections based on a Predicate.A PartitionIterable is the result of splitting an iterable into two iterables based on a Predicate.A PartitionMutableCollection is the result of splitting a mutable collection into two mutable collections based on a Predicate.