Uses of Interface
org.eclipse.collections.api.partition.list.PartitionList
-
Packages that use PartitionList Package Description org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.partition.list This package contains interfaces forPartitionList
.org.eclipse.collections.impl.partition.list This package contains implementations of thePartitionList
interface. -
-
Uses of PartitionList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return PartitionList Modifier and Type Method Description PartitionList<T>
ListIterable. partition(Predicate<? super T> predicate)
PartitionList<T>
ListIterable. partitionWhile(Predicate<? super T> predicate)
Returns a Partition of the initial elements that satisfy the Predicate and the remaining elements.<P> PartitionList<T>
ListIterable. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of PartitionList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return PartitionList Modifier and Type Method Description PartitionList<V>
OrderedMap. partition(Predicate<? super V> predicate)
PartitionList<V>
OrderedMap. partitionWhile(Predicate<? super V> predicate)
<P> PartitionList<V>
OrderedMap. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)
-
Uses of PartitionList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return PartitionList Modifier and Type Method Description PartitionList<V>
SortedMapIterable. partition(Predicate<? super V> predicate)
PartitionList<V>
SortedMapIterable. partitionWhile(Predicate<? super V> predicate)
<P> PartitionList<V>
SortedMapIterable. partitionWith(Predicate2<? super V,? super P> predicate, P parameter)
-
Uses of PartitionList in org.eclipse.collections.api.partition.list
Subinterfaces of PartitionList in org.eclipse.collections.api.partition.list Modifier and Type Interface Description interface
PartitionImmutableList<T>
A PartitionImmutableList is the result of splitting an immutable list into two immutable lists based on a Predicate.interface
PartitionMutableList<T>
A PartitionMutableList is the result of splitting a mutable list into two mutable lists based on a Predicate. -
Uses of PartitionList in org.eclipse.collections.impl.partition.list
Classes in org.eclipse.collections.impl.partition.list that implement PartitionList Modifier and Type Class Description class
PartitionFastList<T>
class
PartitionImmutableListImpl<T>
-