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 ofProcedureandProcedure2.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 theMutableListinterface.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. fastListprivate FastList<V>FastListCollectProcedure. fastListprivate FastList<T>FastListRejectProcedure. fastListprivate FastList<T>FastListSelectProcedure. fastListMethods 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. listsFields in org.eclipse.collections.impl.list.mutable with type parameters of type FastList Modifier and Type Field Description private FastList<FastList<E>>CompositeFastList. listsprivate static Predicate2<FastList<?>,java.lang.Object>CompositeFastList. REMOVE_PREDICATEprivate static Procedure<FastList<?>>CompositeFastList. REVERSE_LIST_PROCEDUREMethods 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 passedelementsargument 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 voidFastList. addAllFastList(FastList<T> source)private voidFastList. addAllFastListAtIndex(FastList<T> source, int index)booleanFastList. fastListEquals(FastList<?> that)voidCompositeFastList.ProcedureToInnerListObjectIntProcedure. value(FastList<E> list)voidCompositeFastList.ProcedureToReverseInnerListObjectIntProcedure. value(FastList<E> list)Constructor parameters in org.eclipse.collections.impl.list.mutable with type arguments of type FastList Constructor Description CompositeIterator(MutableList<FastList<E>> newLists) -
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)
-