Package org.eclipse.collections.api.partition.list
package org.eclipse.collections.api.partition.list
This package contains interfaces for
PartitionList
.
A PartitionList is the result of splitting a list into two lists based on a Predicate.
This package contains 3 interfaces:
-
PartitionList
- a read-only PartitionList API. -
PartitionMutableList
- a modifiable PartitionList. -
PartitionImmutableList
- the non-modifiable equivalent interface toPartitionMutableList
.
-
ClassDescriptionA PartitionImmutableList is the result of splitting an immutable list into two immutable lists based on a Predicate.A PartitionList is the result of splitting a ListIterable into two ListIterables based on a Predicate.A PartitionMutableList is the result of splitting a mutable list into two mutable lists based on a Predicate.