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.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
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.list.mutable
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 Iterable<V>> function)static <E> FastList<E>FastList. newList()static <E> FastList<E>FastList. newList(int initialCapacity)static <E> FastList<E>FastList. newList(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(Class<S> clazz)<P> FastList<T>FastList. selectWith(Predicate2<? super T,? super P> predicate, P parameter)FastList<T>FastList. sortThis()FastList<T>FastList. sortThis(Comparator<? super T> comparator)FastList<T>FastList. toList()FastList<T>FastList. toSortedList()FastList<T>FastList. toSortedList(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 booleanFastList. fastListEquals(FastList<?> that) -
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(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 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(Object[] array, int size, Class<T> clazz)
-