Interface PartitionSortedSet<T>

All Superinterfaces:
PartitionIterable<T>, PartitionOrderedIterable<T>, PartitionReversibleIterable<T>, PartitionSet<T>, PartitionSortedIterable<T>
All Known Subinterfaces:
PartitionImmutableSortedSet<T>, PartitionMutableSortedSet<T>
All Known Implementing Classes:
PartitionImmutableSortedSetImpl, PartitionTreeSortedSet

public interface PartitionSortedSet<T>
extends PartitionSet<T>, PartitionSortedIterable<T>, PartitionReversibleIterable<T>
A PartitionSortedSet is the result of splitting a SortedSetIterable into two SortedSetIterables based on a Predicate. The results that answer true for the Predicate will be returned from the getSelected() method and the results that answer false for the predicate will be returned from the getRejected() method.