Interface PartitionMutableList<T>

All Superinterfaces:
PartitionIterable<T>, PartitionList<T>, PartitionMutableCollection<T>, PartitionOrderedIterable<T>, PartitionReversibleIterable<T>
All Known Implementing Classes:
PartitionFastList

public interface PartitionMutableList<T>
extends PartitionMutableCollection<T>, PartitionList<T>
A PartitionMutableList is the result of splitting a mutable list into two mutable lists 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.