Package org.eclipse.collections.api.partition.set
package org.eclipse.collections.api.partition.set
This package contains interfaces for
PartitionSet
.
A PartitionSet is the result of splitting a set into two sets based on a Predicate.
This package contains 4 interfaces:
-
PartitionSet
- a read-only PartitionSet API. -
PartitionMutableSet
- a modifiable PartitionSet. -
PartitionImmutableSet
- the non-modifiable equivalent interface toPartitionMutableSet
. -
PartitionUnsortedSet
- the result of splitting two UnsortedSetIterables based on a Predicate.
-
ClassDescriptionA PartitionImmutableSet is the result of splitting an immutable set into two immutable sets based on a Predicate.A PartitionImmutableSetIterable is the result of splitting a ImmutableSetIterable into two ImmutableSetIterables based on a Predicate.A PartitionMutableSet is the result of splitting a mutable set into two mutable sets based on a Predicate.A PartitionMutableSetIterable is the result of splitting a MutableSetIterable into two MutableSetIterables based on a Predicate.PartitionSet<T>A PartitionSet is the result of splitting a SetIterable into two SetIterables based on a Predicate.A PartitionUnsortedSet is the result of splitting two UnsortedSetIterable on a Predicate.