Uses of Class
org.eclipse.collections.impl.partition.list.PartitionFastList
-
Packages that use PartitionFastList Package Description org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.partition.list This package contains implementations of thePartitionList
interface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of PartitionFastList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return PartitionFastList Modifier and Type Method Description PartitionFastList<T>
FastList. partition(Predicate<? super T> predicate)
<P> PartitionFastList<T>
FastList. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of PartitionFastList in org.eclipse.collections.impl.partition.list
Constructors in org.eclipse.collections.impl.partition.list with parameters of type PartitionFastList Constructor Description PartitionImmutableListImpl(PartitionFastList<T> partitionFastList)
-
Uses of PartitionFastList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return PartitionFastList Modifier and Type Method Description static <T> PartitionFastList<T>
ArrayIterate. partition(T[] array, Predicate<? super T> predicate)
static <T,P>
PartitionFastList<T>ArrayIterate. partitionWith(T[] array, Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of PartitionFastList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return PartitionFastList Modifier and Type Method Description static <T> PartitionFastList<T>
InternalArrayIterate. partition(T[] array, int size, Predicate<? super T> predicate)
static <T,P>
PartitionFastList<T>InternalArrayIterate. partitionWith(T[] array, int size, Predicate2<? super T,? super P> predicate, P parameter)
-