Uses of Class
org.eclipse.collections.impl.list.mutable.FastList
Packages that use FastList
Package
Description
This package contains implementations of
Procedure
and Procedure2
.This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join
framework.
This package contains implementations of the
MutableList
interface.This package contains implementations of the
MutableMap
interface.This package contains mutable map implementations backed by hashtables that rely on
HashingStrategy
s provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains implementations of the
ImmutableStack
interface.This package contains implementations of the
MutableStack
interface.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of FastList in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as FastListModifier and TypeFieldDescriptionFastListCollectIfProcedure.fastList
FastListCollectProcedure.fastList
FastListRejectProcedure.fastList
FastListSelectProcedure.fastList
Methods in org.eclipse.collections.impl.block.procedure that return FastListModifier and TypeMethodDescriptionFastListCollectIfProcedure.getFastList()
FastListCollectProcedure.getFastList()
FastListRejectProcedure.getFastList()
FastListSelectProcedure.getFastList()
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type FastListModifierConstructorDescriptionFastListCollectIfProcedure
(FastList<V> targetCollection, Function<? super T, ? extends V> function, Predicate<? super T> predicate) FastListRejectProcedure
(Predicate<? super T> newPredicate, FastList<T> targetCollection) FastListSelectProcedure
(Predicate<? super T> newPredicate, FastList<T> targetCollection) -
Uses of FastList in org.eclipse.collections.impl.forkjoin
Methods in org.eclipse.collections.impl.forkjoin that return FastListModifier and TypeMethodDescriptionprivate FastList
<ForkJoinTask<PT>> FJBatchIterableProcedureRunner.createAndExecuteTasks
(ForkJoinPool executor, ProcedureFactory<PT> procedureFactory, BatchIterable<T> iterable) private FastList
<ForkJoinTask<PT>> FJListObjectIntProcedureRunner.createAndExecuteTasks
(ForkJoinPool executor, ObjectIntProcedureFactory<PT> procedureFactory, List<T> list) private FastList
<ForkJoinTask<PT>> FJListProcedureRunner.createAndExecuteTasks
(ForkJoinPool executor, ProcedureFactory<PT> procedureFactory, List<T> list) -
Uses of FastList in org.eclipse.collections.impl.list.mutable
Fields in org.eclipse.collections.impl.list.mutable declared as FastListFields in org.eclipse.collections.impl.list.mutable with type parameters of type FastListModifier and TypeFieldDescriptionCompositeFastList.lists
private static final Predicate2
<FastList<?>, Object> CompositeFastList.REMOVE_PREDICATE
CompositeFastList.REVERSE_LIST_PROCEDURE
Methods in org.eclipse.collections.impl.list.mutable that return FastListModifier and TypeMethodDescriptionFastList.clone()
<V> FastList
<V> <V> FastList
<V> <P,
V> FastList <V> FastList.collectWith
(Function2<? super T, ? super P, ? extends V> function, P parameter) <V> FastList
<V> FastList.flatCollect
(Function<? super T, ? extends Iterable<V>> function) static <E> FastList
<E> FastList.newList()
static <E> FastList
<E> FastList.newList
(int initialCapacity) static <E> FastList
<E> static <E> FastList
<E> FastList.newListWith
(E... elements) Creates a new list using the passedelements
argument as the backing store.static <E> FastList
<E> FastList.newWithNValues
(int size, Function0<? extends E> factory) Creates a new FastList pre-sized to the specified size filled with default values generated by the specified function.FastList.rejectWith
(Predicate2<? super T, ? super P> predicate, P parameter) FastList.reverseThis()
<S> FastList
<S> FastList.selectInstancesOf
(Class<S> clazz) FastList.selectWith
(Predicate2<? super T, ? super P> predicate, P parameter) FastList.sortThis()
FastList.sortThis
(Comparator<? super T> comparator) FastList.toList()
FastList.toSortedList()
FastList.toSortedList
(Comparator<? super T> comparator) FastList.withArrayCopy
(T[] elements, int begin, int length) static <E> FastList
<E> FastList.wrapCopy
(E... array) Methods in org.eclipse.collections.impl.list.mutable with parameters of type FastListModifier and TypeMethodDescriptionprivate void
FastList.addAllFastList
(FastList<T> source) private void
FastList.addAllFastListAtIndex
(FastList<T> source, int index) boolean
FastList.fastListEquals
(FastList<?> that) void
void
Constructors in org.eclipse.collections.impl.list.mutable with parameters of type FastListConstructor parameters in org.eclipse.collections.impl.list.mutable with type arguments of type FastList -
Uses of FastList in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type FastListModifier and TypeMethodDescriptionprivate void
UnifiedMap.ValuesCollection.chainedAddToList
(Object[] chain, FastList<V> replace) -
Uses of FastList in org.eclipse.collections.impl.map.strategy.mutable
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type FastListModifier and TypeMethodDescriptionprivate void
UnifiedMapWithHashingStrategy.ValuesCollection.chainedAddToList
(Object[] chain, FastList<V> replace) -
Uses of FastList in org.eclipse.collections.impl.stack.immutable
Fields in org.eclipse.collections.impl.stack.immutable declared as FastListConstructors in org.eclipse.collections.impl.stack.immutable with parameters of type FastList -
Uses of FastList in org.eclipse.collections.impl.stack.mutable
Fields in org.eclipse.collections.impl.stack.mutable declared as FastList -
Uses of FastList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return FastListModifier and TypeMethodDescriptionstatic <T> FastList
<T> ArrayIterate.selectInstancesOf
(Object[] objectArray, Class<T> clazz) -
Uses of FastList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return FastListModifier and TypeMethodDescriptionstatic <T> FastList
<T> InternalArrayIterate.distinct
(T[] objectArray, int size) static <T> FastList
<T> InternalArrayIterate.distinct
(T[] objectArray, int size, HashingStrategy<? super T> hashingStrategy) static <T> FastList
<T> InternalArrayIterate.selectInstancesOf
(Object[] array, int size, Class<T> clazz)