Uses of Class
org.eclipse.collections.impl.list.mutable.FastList
-
Packages that use FastList Package Description org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedure
andProcedure2
.org.eclipse.collections.impl.forkjoin This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join framework.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.strategy.mutable This package contains mutable map implementations backed by hashtables that rely onHashingStrategy
s provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
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 FastList in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as FastList Modifier and Type Field Description private FastList<V>
FastListCollectIfProcedure. fastList
private FastList<V>
FastListCollectProcedure. fastList
private FastList<T>
FastListRejectProcedure. fastList
private FastList<T>
FastListSelectProcedure. fastList
Methods in org.eclipse.collections.impl.block.procedure that return FastList Modifier and Type Method Description FastList<V>
FastListCollectIfProcedure. getFastList()
FastList<V>
FastListCollectProcedure. getFastList()
FastList<T>
FastListRejectProcedure. getFastList()
FastList<T>
FastListSelectProcedure. getFastList()
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type FastList Constructor Description FastListCollectIfProcedure(FastList<V> targetCollection, Function<? super T,? extends V> function, Predicate<? super T> predicate)
FastListCollectProcedure(Function<? super T,? extends V> function, FastList<V> targetCollection)
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 FastList Modifier and Type Method Description private FastList<java.util.concurrent.ForkJoinTask<PT>>
FJBatchIterableProcedureRunner. createAndExecuteTasks(java.util.concurrent.ForkJoinPool executor, ProcedureFactory<PT> procedureFactory, BatchIterable<T> iterable)
private FastList<java.util.concurrent.ForkJoinTask<PT>>
FJListObjectIntProcedureRunner. createAndExecuteTasks(java.util.concurrent.ForkJoinPool executor, ObjectIntProcedureFactory<PT> procedureFactory, java.util.List<T> list)
private FastList<java.util.concurrent.ForkJoinTask<PT>>
FJListProcedureRunner. createAndExecuteTasks(java.util.concurrent.ForkJoinPool executor, ProcedureFactory<PT> procedureFactory, java.util.List<T> list)
-
Uses of FastList in org.eclipse.collections.impl.list.mutable
Fields in org.eclipse.collections.impl.list.mutable declared as FastList Modifier and Type Field Description private FastList<FastList<E>>
CompositeFastList. lists
Fields in org.eclipse.collections.impl.list.mutable with type parameters of type FastList Modifier and Type Field Description private FastList<FastList<E>>
CompositeFastList. lists
private static Predicate2<FastList<?>,java.lang.Object>
CompositeFastList. REMOVE_PREDICATE
private static Procedure<FastList<?>>
CompositeFastList. REVERSE_LIST_PROCEDURE
Methods in org.eclipse.collections.impl.list.mutable that return FastList Modifier and Type Method Description FastList<T>
FastList. clone()
<V> FastList<V>
FastList. collect(Function<? super T,? extends V> function)
<V> FastList<V>
FastList. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<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 java.lang.Iterable<V>> function)
static <E> FastList<E>
FastList. newList()
static <E> FastList<E>
FastList. newList(int initialCapacity)
static <E> FastList<E>
FastList. newList(java.lang.Iterable<? extends E> source)
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<T>
FastList. reject(Predicate<? super T> predicate)
<P> FastList<T>
FastList. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
FastList<T>
FastList. reverseThis()
FastList<T>
FastList. select(Predicate<? super T> predicate)
<S> FastList<S>
FastList. selectInstancesOf(java.lang.Class<S> clazz)
<P> FastList<T>
FastList. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
FastList<T>
FastList. sortThis()
FastList<T>
FastList. sortThis(java.util.Comparator<? super T> comparator)
FastList<T>
FastList. toList()
FastList<T>
FastList. toSortedList()
FastList<T>
FastList. toSortedList(java.util.Comparator<? super T> comparator)
FastList<T>
FastList. with(T... elements)
FastList<T>
FastList. with(T element1, T element2)
FastList<T>
FastList. with(T element1, T element2, T element3)
FastList<T>
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 FastList Modifier and Type Method Description private void
FastList. addAllFastList(FastList<T> source)
private void
FastList. addAllFastListAtIndex(FastList<T> source, int index)
boolean
FastList. fastListEquals(FastList<?> that)
void
CompositeFastList.ProcedureToInnerListObjectIntProcedure. value(FastList<E> list)
void
CompositeFastList.ProcedureToReverseInnerListObjectIntProcedure. value(FastList<E> list)
Constructors in org.eclipse.collections.impl.list.mutable with parameters of type FastList Constructor Description CompositeIterator(FastList<FastList<E>> newLists)
Constructor parameters in org.eclipse.collections.impl.list.mutable with type arguments of type FastList Constructor Description CompositeIterator(FastList<FastList<E>> newLists)
-
Uses of FastList in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type FastList Modifier and Type Method Description private void
UnifiedMap.ValuesCollection. chainedAddToList(java.lang.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 FastList Modifier and Type Method Description private void
UnifiedMapWithHashingStrategy.ValuesCollection. chainedAddToList(java.lang.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 FastList Modifier and Type Field Description private FastList<T>
ImmutableArrayStack. delegate
Deprecated.Constructors in org.eclipse.collections.impl.stack.immutable with parameters of type FastList Constructor Description ImmutableArrayStack(FastList<T> newElements)
Deprecated. -
Uses of FastList in org.eclipse.collections.impl.stack.mutable
Fields in org.eclipse.collections.impl.stack.mutable declared as FastList Modifier and Type Field Description private FastList<T>
ArrayStack. delegate
-
Uses of FastList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return FastList Modifier and Type Method Description static <T> FastList<T>
ArrayIterate. selectInstancesOf(java.lang.Object[] objectArray, java.lang.Class<T> clazz)
-
Uses of FastList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return FastList Modifier and Type Method Description static <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(java.lang.Object[] array, int size, java.lang.Class<T> clazz)
-