@NotThreadSafe public class FastList<T> extends AbstractMutableList<T> implements Externalizable, RandomAccess, BatchIterable<T>
An empty FastList created by calling the default constructor starts with a shared reference to a static empty array (DEFAULT_SIZED_EMPTY_ARRAY). This makes empty FastLists very memory efficient. The first call to add will lazily create an array of size 10.
An empty FastList created by calling the pre-size constructor with a value of 0 (new FastList(0)) starts with a shared reference to a static empty array (ZERO_SIZED_ARRAY). This makes FastLists presized to 0 very memory efficient as well. The first call to add will lazily create an array of size 1.
| Constructor and Description |
|---|
FastList() |
FastList(Collection<? extends T> source) |
FastList(int initialCapacity) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
T element) |
boolean |
add(T newItem) |
boolean |
addAll(Collection<? extends T> source) |
boolean |
addAll(int index,
Collection<? extends T> source) |
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
void |
batchForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure,
int sectionIndex,
int sectionCount) |
void |
clear() |
FastList<T> |
clone() |
<V> FastList<V> |
collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
org.eclipse.collections.api.list.primitive.MutableBooleanList |
collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction) |
<R extends org.eclipse.collections.api.collection.primitive.MutableBooleanCollection> |
collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction,
R target) |
org.eclipse.collections.api.list.primitive.MutableByteList |
collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction) |
<R extends org.eclipse.collections.api.collection.primitive.MutableByteCollection> |
collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction,
R target) |
org.eclipse.collections.api.list.primitive.MutableCharList |
collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction) |
<R extends org.eclipse.collections.api.collection.primitive.MutableCharCollection> |
collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction,
R target) |
org.eclipse.collections.api.list.primitive.MutableDoubleList |
collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction) |
<R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> |
collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction,
R target) |
org.eclipse.collections.api.list.primitive.MutableFloatList |
collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction) |
<R extends org.eclipse.collections.api.collection.primitive.MutableFloatCollection> |
collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction,
R target) |
<V> FastList<V> |
collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V,R extends Collection<V>> |
collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
org.eclipse.collections.api.list.primitive.MutableIntList |
collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction) |
<R extends org.eclipse.collections.api.collection.primitive.MutableIntCollection> |
collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction,
R target) |
org.eclipse.collections.api.list.primitive.MutableLongList |
collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction) |
<R extends org.eclipse.collections.api.collection.primitive.MutableLongCollection> |
collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction,
R target) |
org.eclipse.collections.api.list.primitive.MutableShortList |
collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction) |
<R extends org.eclipse.collections.api.collection.primitive.MutableShortCollection> |
collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction,
R target) |
<P,V> FastList<V> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function,
P parameter) |
<P,V,R extends Collection<V>> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function,
P parameter,
R target) |
boolean |
containsAll(Collection<?> source) |
boolean |
containsAllArguments(Object... source) |
<S> boolean |
corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S> other,
org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super S> predicate) |
int |
count(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> int |
countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
T |
detect(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
T |
detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function0<? extends T> defaultValueBlock) |
int |
detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
int |
detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> T |
detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P> T |
detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
org.eclipse.collections.api.block.function.Function0<? extends T> defaultValueBlock) |
org.eclipse.collections.api.list.MutableList<T> |
distinct() |
org.eclipse.collections.api.list.MutableList<T> |
distinct(org.eclipse.collections.api.block.HashingStrategy<? super T> hashingStrategy) |
org.eclipse.collections.api.list.MutableList<T> |
drop(int count) |
org.eclipse.collections.api.list.MutableList<T> |
dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
void |
each(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
void |
ensureCapacity(int minCapacity) |
boolean |
equals(Object that) |
boolean |
fastListEquals(FastList<?> that) |
<V> FastList<V> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<V,R extends Collection<V>> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function,
R target) |
void |
forEach(int from,
int to,
org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
void |
forEachIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
<P> void |
forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T,? super P> procedure,
P parameter) |
void |
forEachWithIndex(int from,
int to,
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure) |
void |
forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure) |
T |
get(int index) |
int |
getBatchCount(int batchSize) |
T |
getFirst() |
T |
getLast() |
<V> FastListMultimap<V,T> |
groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V,R extends org.eclipse.collections.api.multimap.MutableMultimap<V,T>> |
groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
<V> FastListMultimap<V,T> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<V,R extends org.eclipse.collections.api.multimap.MutableMultimap<V,T>> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function,
R target) |
<K> org.eclipse.collections.api.map.MutableMap<K,T> |
groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T,? extends K> function) |
<K,R extends org.eclipse.collections.api.map.MutableMap<K,T>> |
groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T,? extends K> function,
R target) |
int |
hashCode() |
int |
indexOf(Object object) |
double |
injectInto(double injectedValue,
org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction<? super T> function) |
float |
injectInto(float injectedValue,
org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction<? super T> function) |
int |
injectInto(int injectedValue,
org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction<? super T> function) |
<IV> IV |
injectInto(IV injectedValue,
org.eclipse.collections.api.block.function.Function2<? super IV,? super T,? extends IV> function) |
long |
injectInto(long injectedValue,
org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction<? super T> function) |
<IV,P> IV |
injectIntoWith(IV injectValue,
org.eclipse.collections.api.block.function.Function3<? super IV,? super T,? super P,? extends IV> function,
P parameter) |
int |
lastIndexOf(Object object) |
T |
max() |
T |
max(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
maxBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
T |
min() |
T |
min(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
minBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
static <E> FastList<E> |
newList() |
static <E> FastList<E> |
newList(int initialCapacity) |
static <E> FastList<E> |
newList(Iterable<? extends E> source) |
static <E> FastList<E> |
newListWith(E... elements)
Creates a new list using the passed
elements argument as the backing store. |
static <E> FastList<E> |
newWithNValues(int size,
org.eclipse.collections.api.block.function.Function0<E> factory)
Creates a new FastList pre-sized to the specified size filled with default values generated by the specified function.
|
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
PartitionFastList<T> |
partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
org.eclipse.collections.api.partition.list.PartitionMutableList<T> |
partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> PartitionFastList<T> |
partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
void |
readExternal(ObjectInput in) |
FastList<T> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<R extends Collection<T>> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
R target) |
<P> FastList<T> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P,R extends Collection<T>> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
R target) |
T |
remove(int index) |
boolean |
remove(Object object) |
boolean |
removeIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> boolean |
removeIfWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
FastList<T> |
reverseThis() |
FastList<T> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<R extends Collection<T>> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
R target) |
<P> org.eclipse.collections.api.tuple.Twin<org.eclipse.collections.api.list.MutableList<T>> |
selectAndRejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<S> FastList<S> |
selectInstancesOf(Class<S> clazz) |
<P> FastList<T> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
<P,R extends Collection<T>> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter,
R target) |
T |
set(int index,
T element) |
int |
size() |
FastList<T> |
sortThis() |
FastList<T> |
sortThis(Comparator<? super T> comparator) |
<V> org.eclipse.collections.api.map.primitive.ObjectDoubleMap<V> |
sumByDouble(org.eclipse.collections.api.block.function.Function<T,V> groupBy,
org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function) |
<V> org.eclipse.collections.api.map.primitive.ObjectDoubleMap<V> |
sumByFloat(org.eclipse.collections.api.block.function.Function<T,V> groupBy,
org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function) |
<V> org.eclipse.collections.api.map.primitive.ObjectLongMap<V> |
sumByInt(org.eclipse.collections.api.block.function.Function<T,V> groupBy,
org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function) |
<V> org.eclipse.collections.api.map.primitive.ObjectLongMap<V> |
sumByLong(org.eclipse.collections.api.block.function.Function<T,V> groupBy,
org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function) |
double |
sumOfDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function) |
double |
sumOfFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function) |
long |
sumOfInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function) |
long |
sumOfLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
take(int count) |
org.eclipse.collections.api.list.MutableList<T> |
takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
Object[] |
toArray() |
<E> E[] |
toArray(E[] array) |
<E> E[] |
toArray(E[] array,
int sourceFromIndex,
int sourceToIndex,
int destinationIndex) |
<E> E[] |
toArray(int sourceFromIndex,
int sourceToIndex) |
FastList<T> |
toList() |
FastList<T> |
toSortedList() |
FastList<T> |
toSortedList(Comparator<? super T> comparator) |
T[] |
toTypedArray(Class<T> clazz) |
void |
trimToSize() |
boolean |
trimToSizeIfGreaterThanPercent(double loadFactor)
Express load factor as 0.25 to trim a collection with more than 25% excess capacity
|
FastList<T> |
with(T... elements) |
FastList<T> |
with(T element1,
T element2) |
FastList<T> |
with(T element1,
T element2,
T element3) |
FastList<T> |
withArrayCopy(T[] elements,
int begin,
int length) |
static <E> FastList<E> |
wrapCopy(E... array) |
void |
writeExternal(ObjectOutput out) |
appendString, asParallel, asReversed, asSynchronized, asUnmodifiable, binarySearch, binarySearch, contains, iterator, listIterator, listIterator, newEmpty, removeAll, retainAll, reverseForEach, shuffleThis, shuffleThis, sortThisBy, sortThisByBoolean, sortThisByByte, sortThisByChar, sortThisByDouble, sortThisByFloat, sortThisByInt, sortThisByLong, sortThisByShort, subList, tap, toImmutable, toReversed, toSet, toStack, with, withAll, without, withoutAll, zip, zip, zipWithIndex, zipWithIndexaddAllIterable, aggregateBy, aggregateInPlaceBy, chunk, removeAllIterable, retainAllIterableappendString, asLazy, containsAllIterable, forEach, isEmpty, makeString, makeString, makeString, notEmpty, toBag, toMap, toSortedBag, toSortedBag, toSortedBagBy, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toStringforEachaddAllIterable, aggregateBy, aggregateInPlaceBy, removeAllIterable, retainAllIterableisEmpty, replaceAll, sort, spliteratorparallelStream, removeIf, streamappendString, asLazy, chunk, containsAllIterable, isEmpty, makeString, makeString, makeString, notEmpty, toBag, toMap, toSortedBag, toSortedBag, toSortedBagBy, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toStringpublic FastList()
public FastList(int initialCapacity)
public FastList(Collection<? extends T> source)
public static <E> FastList<E> newList()
public static <E> FastList<E> wrapCopy(E... array)
public static <E> FastList<E> newList(int initialCapacity)
public static <E> FastList<E> newListWith(E... elements)
elements argument as the backing store.
!!! WARNING: This method uses the passed in array, so can be very unsafe if the original array is held onto anywhere else. !!!
public static <E> FastList<E> newWithNValues(int size, org.eclipse.collections.api.block.function.Function0<E> factory)
public FastList<T> clone()
clone in interface org.eclipse.collections.api.list.MutableList<T>clone in class AbstractMutableList<T>public void clear()
public void forEach(int from,
int to,
org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
forEach in interface org.eclipse.collections.api.ordered.OrderedIterable<T>forEach in class AbstractMutableList<T>public void forEachWithIndex(int from,
int to,
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
forEachWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>forEachWithIndex in class AbstractMutableList<T>public void batchForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure, int sectionIndex, int sectionCount)
batchForEach in interface BatchIterable<T>public int getBatchCount(int batchSize)
getBatchCount in interface BatchIterable<T>public <E> E[] toArray(E[] array,
int sourceFromIndex,
int sourceToIndex,
int destinationIndex)
public <E> E[] toArray(int sourceFromIndex,
int sourceToIndex)
public FastList<T> sortThis(Comparator<? super T> comparator)
sortThis in interface org.eclipse.collections.api.list.MutableList<T>sortThis in class AbstractMutableList<T>public FastList<T> sortThis()
sortThis in interface org.eclipse.collections.api.list.MutableList<T>sortThis in class AbstractMutableList<T>public FastList<T> reverseThis()
reverseThis in interface org.eclipse.collections.api.list.MutableList<T>reverseThis in class AbstractMutableList<T>public boolean addAll(Collection<? extends T> source)
addAll in interface Collection<T>addAll in interface List<T>addAll in class AbstractMutableCollection<T>public boolean containsAll(Collection<?> source)
containsAll in interface Collection<T>containsAll in interface List<T>containsAll in interface org.eclipse.collections.api.RichIterable<T>containsAll in class AbstractMutableList<T>public boolean containsAllArguments(Object... source)
containsAllArguments in interface org.eclipse.collections.api.RichIterable<T>containsAllArguments in class AbstractRichIterable<T>public <E> E[] toArray(E[] array)
toArray in interface Collection<T>toArray in interface List<T>toArray in interface org.eclipse.collections.api.RichIterable<T>toArray in class AbstractRichIterable<T>public Object[] toArray()
toArray in interface Collection<T>toArray in interface List<T>toArray in interface org.eclipse.collections.api.RichIterable<T>toArray in class AbstractRichIterable<T>public int indexOf(Object object)
public int lastIndexOf(Object object)
lastIndexOf in interface List<T>lastIndexOf in interface org.eclipse.collections.api.list.ListIterable<T>lastIndexOf in class AbstractMutableList<T>public void trimToSize()
public boolean trimToSizeIfGreaterThanPercent(double loadFactor)
public void ensureCapacity(int minCapacity)
public T getFirst()
getFirst in interface org.eclipse.collections.api.list.ListIterable<T>getFirst in interface org.eclipse.collections.api.ordered.OrderedIterable<T>getFirst in interface org.eclipse.collections.api.RichIterable<T>getFirst in class AbstractMutableList<T>public T getLast()
getLast in interface org.eclipse.collections.api.list.ListIterable<T>getLast in interface org.eclipse.collections.api.ordered.OrderedIterable<T>getLast in interface org.eclipse.collections.api.RichIterable<T>getLast in class AbstractMutableList<T>public <V> FastListMultimap<V,T> groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
groupBy in interface org.eclipse.collections.api.collection.MutableCollection<T>groupBy in interface org.eclipse.collections.api.list.ListIterable<T>groupBy in interface org.eclipse.collections.api.list.MutableList<T>groupBy in interface org.eclipse.collections.api.ordered.OrderedIterable<T>groupBy in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>groupBy in interface org.eclipse.collections.api.RichIterable<T>groupBy in class AbstractMutableList<T>public <V,R extends org.eclipse.collections.api.multimap.MutableMultimap<V,T>> R groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function, R target)
groupBy in interface org.eclipse.collections.api.RichIterable<T>groupBy in class AbstractRichIterable<T>public <V> FastListMultimap<V,T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
groupByEach in interface org.eclipse.collections.api.collection.MutableCollection<T>groupByEach in interface org.eclipse.collections.api.list.ListIterable<T>groupByEach in interface org.eclipse.collections.api.list.MutableList<T>groupByEach in interface org.eclipse.collections.api.ordered.OrderedIterable<T>groupByEach in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>groupByEach in interface org.eclipse.collections.api.RichIterable<T>groupByEach in class AbstractMutableList<T>public <V,R extends org.eclipse.collections.api.multimap.MutableMultimap<V,T>> R groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function, R target)
groupByEach in interface org.eclipse.collections.api.RichIterable<T>groupByEach in class AbstractRichIterable<T>public <K> org.eclipse.collections.api.map.MutableMap<K,T> groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T,? extends K> function)
groupByUniqueKey in interface org.eclipse.collections.api.collection.MutableCollection<T>groupByUniqueKey in interface org.eclipse.collections.api.RichIterable<T>groupByUniqueKey in class AbstractMutableList<T>public <K,R extends org.eclipse.collections.api.map.MutableMap<K,T>> R groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T,? extends K> function, R target)
groupByUniqueKey in interface org.eclipse.collections.api.RichIterable<T>groupByUniqueKey in class AbstractRichIterable<T>public void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface org.eclipse.collections.api.RichIterable<T>appendString in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> take(int count)
public org.eclipse.collections.api.list.MutableList<T> drop(int count)
public PartitionFastList<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
partition in interface org.eclipse.collections.api.collection.MutableCollection<T>partition in interface org.eclipse.collections.api.list.ListIterable<T>partition in interface org.eclipse.collections.api.list.MutableList<T>partition in interface org.eclipse.collections.api.ordered.OrderedIterable<T>partition in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>partition in interface org.eclipse.collections.api.RichIterable<T>partition in class AbstractMutableList<T>public <P> PartitionFastList<T> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
partitionWith in interface org.eclipse.collections.api.collection.MutableCollection<T>partitionWith in interface org.eclipse.collections.api.list.ListIterable<T>partitionWith in interface org.eclipse.collections.api.list.MutableList<T>partitionWith in interface org.eclipse.collections.api.ordered.OrderedIterable<T>partitionWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>partitionWith in interface org.eclipse.collections.api.RichIterable<T>partitionWith in class AbstractMutableList<T>public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
each in interface org.eclipse.collections.api.RichIterable<T>each in class AbstractMutableList<T>public void forEachIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
forEachWithIndex in interface org.eclipse.collections.api.InternalIterable<T>forEachWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>forEachWithIndex in class AbstractMutableList<T>public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T,? super P> procedure, P parameter)
forEachWith in interface org.eclipse.collections.api.InternalIterable<T>forEachWith in class AbstractMutableList<T>public FastList<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
select in interface org.eclipse.collections.api.collection.MutableCollection<T>select in interface org.eclipse.collections.api.list.ListIterable<T>select in interface org.eclipse.collections.api.list.MutableList<T>select in interface org.eclipse.collections.api.ordered.OrderedIterable<T>select in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>select in interface org.eclipse.collections.api.RichIterable<T>select in class AbstractMutableList<T>public <R extends Collection<T>> R select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, R target)
select in interface org.eclipse.collections.api.RichIterable<T>select in class AbstractMutableList<T>public <P> FastList<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
selectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>selectWith in interface org.eclipse.collections.api.list.ListIterable<T>selectWith in interface org.eclipse.collections.api.list.MutableList<T>selectWith in interface org.eclipse.collections.api.ordered.OrderedIterable<T>selectWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>selectWith in interface org.eclipse.collections.api.RichIterable<T>selectWith in class AbstractMutableList<T>public <P,R extends Collection<T>> R selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, R target)
selectWith in interface org.eclipse.collections.api.RichIterable<T>selectWith in class AbstractMutableList<T>public FastList<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
reject in interface org.eclipse.collections.api.collection.MutableCollection<T>reject in interface org.eclipse.collections.api.list.ListIterable<T>reject in interface org.eclipse.collections.api.list.MutableList<T>reject in interface org.eclipse.collections.api.ordered.OrderedIterable<T>reject in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>reject in interface org.eclipse.collections.api.RichIterable<T>reject in class AbstractMutableList<T>public <R extends Collection<T>> R reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, R target)
reject in interface org.eclipse.collections.api.RichIterable<T>reject in class AbstractMutableList<T>public <P> FastList<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
rejectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>rejectWith in interface org.eclipse.collections.api.list.ListIterable<T>rejectWith in interface org.eclipse.collections.api.list.MutableList<T>rejectWith in interface org.eclipse.collections.api.ordered.OrderedIterable<T>rejectWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>rejectWith in interface org.eclipse.collections.api.RichIterable<T>rejectWith in class AbstractMutableList<T>public <P,R extends Collection<T>> R rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, R target)
rejectWith in interface org.eclipse.collections.api.RichIterable<T>rejectWith in class AbstractMutableList<T>public <P> org.eclipse.collections.api.tuple.Twin<org.eclipse.collections.api.list.MutableList<T>> selectAndRejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
selectAndRejectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>selectAndRejectWith in class AbstractMutableList<T>public <S> FastList<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface org.eclipse.collections.api.collection.MutableCollection<T>selectInstancesOf in interface org.eclipse.collections.api.list.ListIterable<T>selectInstancesOf in interface org.eclipse.collections.api.list.MutableList<T>selectInstancesOf in interface org.eclipse.collections.api.ordered.OrderedIterable<T>selectInstancesOf in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>selectInstancesOf in interface org.eclipse.collections.api.RichIterable<T>selectInstancesOf in class AbstractMutableList<T>public boolean removeIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
removeIf in interface org.eclipse.collections.api.collection.MutableCollection<T>removeIf in class AbstractMutableList<T>public <P> boolean removeIfWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
removeIfWith in interface org.eclipse.collections.api.collection.MutableCollection<T>removeIfWith in class AbstractMutableList<T>public <V> FastList<V> collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
collect in interface org.eclipse.collections.api.collection.MutableCollection<T>collect in interface org.eclipse.collections.api.list.ListIterable<T>collect in interface org.eclipse.collections.api.list.MutableList<T>collect in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collect in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collect in interface org.eclipse.collections.api.RichIterable<T>collect in class AbstractMutableList<T>public org.eclipse.collections.api.list.primitive.MutableBooleanList collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction)
collectBoolean in interface org.eclipse.collections.api.collection.MutableCollection<T>collectBoolean in interface org.eclipse.collections.api.list.ListIterable<T>collectBoolean in interface org.eclipse.collections.api.list.MutableList<T>collectBoolean in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectBoolean in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectBoolean in interface org.eclipse.collections.api.RichIterable<T>collectBoolean in class AbstractMutableList<T>public <R extends org.eclipse.collections.api.collection.primitive.MutableBooleanCollection> R collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction, R target)
collectBoolean in interface org.eclipse.collections.api.RichIterable<T>collectBoolean in class AbstractRichIterable<T>public org.eclipse.collections.api.list.primitive.MutableByteList collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction)
collectByte in interface org.eclipse.collections.api.collection.MutableCollection<T>collectByte in interface org.eclipse.collections.api.list.ListIterable<T>collectByte in interface org.eclipse.collections.api.list.MutableList<T>collectByte in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectByte in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectByte in interface org.eclipse.collections.api.RichIterable<T>collectByte in class AbstractMutableList<T>public <R extends org.eclipse.collections.api.collection.primitive.MutableByteCollection> R collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction, R target)
collectByte in interface org.eclipse.collections.api.RichIterable<T>collectByte in class AbstractRichIterable<T>public org.eclipse.collections.api.list.primitive.MutableCharList collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction)
collectChar in interface org.eclipse.collections.api.collection.MutableCollection<T>collectChar in interface org.eclipse.collections.api.list.ListIterable<T>collectChar in interface org.eclipse.collections.api.list.MutableList<T>collectChar in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectChar in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectChar in interface org.eclipse.collections.api.RichIterable<T>collectChar in class AbstractMutableList<T>public <R extends org.eclipse.collections.api.collection.primitive.MutableCharCollection> R collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction, R target)
collectChar in interface org.eclipse.collections.api.RichIterable<T>collectChar in class AbstractRichIterable<T>public org.eclipse.collections.api.list.primitive.MutableDoubleList collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction)
collectDouble in interface org.eclipse.collections.api.collection.MutableCollection<T>collectDouble in interface org.eclipse.collections.api.list.ListIterable<T>collectDouble in interface org.eclipse.collections.api.list.MutableList<T>collectDouble in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectDouble in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectDouble in interface org.eclipse.collections.api.RichIterable<T>collectDouble in class AbstractMutableList<T>public <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction, R target)
collectDouble in interface org.eclipse.collections.api.RichIterable<T>collectDouble in class AbstractRichIterable<T>public org.eclipse.collections.api.list.primitive.MutableFloatList collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction)
collectFloat in interface org.eclipse.collections.api.collection.MutableCollection<T>collectFloat in interface org.eclipse.collections.api.list.ListIterable<T>collectFloat in interface org.eclipse.collections.api.list.MutableList<T>collectFloat in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectFloat in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectFloat in interface org.eclipse.collections.api.RichIterable<T>collectFloat in class AbstractMutableList<T>public <R extends org.eclipse.collections.api.collection.primitive.MutableFloatCollection> R collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction, R target)
collectFloat in interface org.eclipse.collections.api.RichIterable<T>collectFloat in class AbstractRichIterable<T>public org.eclipse.collections.api.list.primitive.MutableIntList collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction)
collectInt in interface org.eclipse.collections.api.collection.MutableCollection<T>collectInt in interface org.eclipse.collections.api.list.ListIterable<T>collectInt in interface org.eclipse.collections.api.list.MutableList<T>collectInt in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectInt in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectInt in interface org.eclipse.collections.api.RichIterable<T>collectInt in class AbstractMutableList<T>public <R extends org.eclipse.collections.api.collection.primitive.MutableIntCollection> R collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction, R target)
collectInt in interface org.eclipse.collections.api.RichIterable<T>collectInt in class AbstractRichIterable<T>public org.eclipse.collections.api.list.primitive.MutableLongList collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction)
collectLong in interface org.eclipse.collections.api.collection.MutableCollection<T>collectLong in interface org.eclipse.collections.api.list.ListIterable<T>collectLong in interface org.eclipse.collections.api.list.MutableList<T>collectLong in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectLong in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectLong in interface org.eclipse.collections.api.RichIterable<T>collectLong in class AbstractMutableList<T>public <R extends org.eclipse.collections.api.collection.primitive.MutableLongCollection> R collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction, R target)
collectLong in interface org.eclipse.collections.api.RichIterable<T>collectLong in class AbstractRichIterable<T>public org.eclipse.collections.api.list.primitive.MutableShortList collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction)
collectShort in interface org.eclipse.collections.api.collection.MutableCollection<T>collectShort in interface org.eclipse.collections.api.list.ListIterable<T>collectShort in interface org.eclipse.collections.api.list.MutableList<T>collectShort in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectShort in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectShort in interface org.eclipse.collections.api.RichIterable<T>collectShort in class AbstractMutableList<T>public <R extends org.eclipse.collections.api.collection.primitive.MutableShortCollection> R collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction, R target)
collectShort in interface org.eclipse.collections.api.RichIterable<T>collectShort in class AbstractRichIterable<T>public <V,R extends Collection<V>> R collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function, R target)
collect in interface org.eclipse.collections.api.RichIterable<T>collect in class AbstractMutableList<T>public <V> FastList<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
flatCollect in interface org.eclipse.collections.api.collection.MutableCollection<T>flatCollect in interface org.eclipse.collections.api.list.ListIterable<T>flatCollect in interface org.eclipse.collections.api.list.MutableList<T>flatCollect in interface org.eclipse.collections.api.ordered.OrderedIterable<T>flatCollect in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>flatCollect in interface org.eclipse.collections.api.RichIterable<T>flatCollect in class AbstractMutableList<T>public <V,R extends Collection<V>> R flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function, R target)
flatCollect in interface org.eclipse.collections.api.RichIterable<T>flatCollect in class AbstractMutableList<T>public <P,V> FastList<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function, P parameter)
collectWith in interface org.eclipse.collections.api.collection.MutableCollection<T>collectWith in interface org.eclipse.collections.api.list.ListIterable<T>collectWith in interface org.eclipse.collections.api.list.MutableList<T>collectWith in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectWith in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectWith in interface org.eclipse.collections.api.RichIterable<T>collectWith in class AbstractMutableList<T>public <P,V,R extends Collection<V>> R collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function, P parameter, R target)
collectWith in interface org.eclipse.collections.api.RichIterable<T>collectWith in class AbstractMutableList<T>public <V> FastList<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
collectIf in interface org.eclipse.collections.api.collection.MutableCollection<T>collectIf in interface org.eclipse.collections.api.list.ListIterable<T>collectIf in interface org.eclipse.collections.api.list.MutableList<T>collectIf in interface org.eclipse.collections.api.ordered.OrderedIterable<T>collectIf in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>collectIf in interface org.eclipse.collections.api.RichIterable<T>collectIf in class AbstractMutableList<T>public <V,R extends Collection<V>> R collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function<? super T,? extends V> function, R target)
collectIf in interface org.eclipse.collections.api.RichIterable<T>collectIf in class AbstractMutableList<T>public T detect(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detect in interface org.eclipse.collections.api.RichIterable<T>detect in class AbstractMutableList<T>public T detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function0<? extends T> defaultValueBlock)
detectIfNone in interface org.eclipse.collections.api.RichIterable<T>detectIfNone in class AbstractMutableList<T>public int detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detectIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>detectIndex in class AbstractMutableList<T>public int detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detectLastIndex in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>detectLastIndex in class AbstractMutableList<T>public T min(Comparator<? super T> comparator)
min in interface org.eclipse.collections.api.RichIterable<T>min in class AbstractMutableList<T>public T max(Comparator<? super T> comparator)
max in interface org.eclipse.collections.api.RichIterable<T>max in class AbstractMutableList<T>public T min()
min in interface org.eclipse.collections.api.ordered.OrderedIterable<T>min in interface org.eclipse.collections.api.RichIterable<T>min in class AbstractMutableList<T>public T max()
max in interface org.eclipse.collections.api.ordered.OrderedIterable<T>max in interface org.eclipse.collections.api.RichIterable<T>max in class AbstractMutableList<T>public <V extends Comparable<? super V>> T minBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
minBy in interface org.eclipse.collections.api.RichIterable<T>minBy in class AbstractMutableList<T>public <V extends Comparable<? super V>> T maxBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
maxBy in interface org.eclipse.collections.api.RichIterable<T>maxBy in class AbstractMutableList<T>public <P> T detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
detectWith in interface org.eclipse.collections.api.RichIterable<T>detectWith in class AbstractMutableList<T>public <P> T detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter, org.eclipse.collections.api.block.function.Function0<? extends T> defaultValueBlock)
detectWithIfNone in interface org.eclipse.collections.api.RichIterable<T>detectWithIfNone in class AbstractMutableList<T>public T get(int index)
public boolean add(T newItem)
add in interface Collection<T>add in interface List<T>add in class AbstractMutableCollection<T>public boolean remove(Object object)
remove in interface Collection<T>remove in interface List<T>remove in class AbstractMutableCollection<T>public boolean addAll(int index,
Collection<? extends T> source)
public int size()
size in interface Collection<T>size in interface List<T>size in interface org.eclipse.collections.api.RichIterable<T>size in interface BatchIterable<T>public int count(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
count in interface org.eclipse.collections.api.RichIterable<T>count in class AbstractMutableList<T>public <P> int countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
countWith in interface org.eclipse.collections.api.RichIterable<T>countWith in class AbstractMutableList<T>public <S> boolean corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S> other,
org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super S> predicate)
corresponds in interface org.eclipse.collections.api.ordered.OrderedIterable<T>corresponds in class AbstractMutableList<T>public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
anySatisfy in interface org.eclipse.collections.api.RichIterable<T>anySatisfy in class AbstractMutableList<T>public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
anySatisfyWith in interface org.eclipse.collections.api.RichIterable<T>anySatisfyWith in class AbstractMutableList<T>public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
allSatisfy in interface org.eclipse.collections.api.RichIterable<T>allSatisfy in class AbstractMutableList<T>public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
allSatisfyWith in interface org.eclipse.collections.api.RichIterable<T>allSatisfyWith in class AbstractMutableList<T>public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
noneSatisfy in interface org.eclipse.collections.api.RichIterable<T>noneSatisfy in class AbstractMutableList<T>public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
noneSatisfyWith in interface org.eclipse.collections.api.RichIterable<T>noneSatisfyWith in class AbstractMutableList<T>public <IV> IV injectInto(IV injectedValue,
org.eclipse.collections.api.block.function.Function2<? super IV,? super T,? extends IV> function)
injectInto in interface org.eclipse.collections.api.RichIterable<T>injectInto in class AbstractMutableList<T>public int injectInto(int injectedValue,
org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction<? super T> function)
injectInto in interface org.eclipse.collections.api.RichIterable<T>injectInto in class AbstractMutableList<T>public long injectInto(long injectedValue,
org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction<? super T> function)
injectInto in interface org.eclipse.collections.api.RichIterable<T>injectInto in class AbstractMutableList<T>public double injectInto(double injectedValue,
org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction<? super T> function)
injectInto in interface org.eclipse.collections.api.RichIterable<T>injectInto in class AbstractRichIterable<T>public float injectInto(float injectedValue,
org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction<? super T> function)
injectInto in interface org.eclipse.collections.api.RichIterable<T>injectInto in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> distinct()
distinct in interface org.eclipse.collections.api.list.ListIterable<T>distinct in interface org.eclipse.collections.api.list.MutableList<T>distinct in interface org.eclipse.collections.api.ordered.OrderedIterable<T>distinct in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>distinct in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> distinct(org.eclipse.collections.api.block.HashingStrategy<? super T> hashingStrategy)
distinct in interface org.eclipse.collections.api.list.ListIterable<T>distinct in interface org.eclipse.collections.api.list.MutableList<T>distinct in class AbstractMutableList<T>public long sumOfInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function)
sumOfInt in interface org.eclipse.collections.api.RichIterable<T>sumOfInt in class AbstractMutableList<T>public long sumOfLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function)
sumOfLong in interface org.eclipse.collections.api.RichIterable<T>sumOfLong in class AbstractMutableList<T>public double sumOfFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function)
sumOfFloat in interface org.eclipse.collections.api.RichIterable<T>sumOfFloat in class AbstractMutableList<T>public double sumOfDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function)
sumOfDouble in interface org.eclipse.collections.api.RichIterable<T>sumOfDouble in class AbstractMutableList<T>public <V> org.eclipse.collections.api.map.primitive.ObjectLongMap<V> sumByInt(org.eclipse.collections.api.block.function.Function<T,V> groupBy, org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function)
sumByInt in interface org.eclipse.collections.api.RichIterable<T>sumByInt in class AbstractRichIterable<T>public <V> org.eclipse.collections.api.map.primitive.ObjectLongMap<V> sumByLong(org.eclipse.collections.api.block.function.Function<T,V> groupBy, org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function)
sumByLong in interface org.eclipse.collections.api.RichIterable<T>sumByLong in class AbstractRichIterable<T>public <V> org.eclipse.collections.api.map.primitive.ObjectDoubleMap<V> sumByFloat(org.eclipse.collections.api.block.function.Function<T,V> groupBy, org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function)
sumByFloat in interface org.eclipse.collections.api.RichIterable<T>sumByFloat in class AbstractRichIterable<T>public <V> org.eclipse.collections.api.map.primitive.ObjectDoubleMap<V> sumByDouble(org.eclipse.collections.api.block.function.Function<T,V> groupBy, org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function)
sumByDouble in interface org.eclipse.collections.api.RichIterable<T>sumByDouble in class AbstractRichIterable<T>public <IV,P> IV injectIntoWith(IV injectValue,
org.eclipse.collections.api.block.function.Function3<? super IV,? super T,? super P,? extends IV> function,
P parameter)
injectIntoWith in interface org.eclipse.collections.api.collection.MutableCollection<T>injectIntoWith in class AbstractMutableList<T>public FastList<T> toList()
toList in interface org.eclipse.collections.api.RichIterable<T>toList in class AbstractMutableList<T>public FastList<T> toSortedList()
toSortedList in interface org.eclipse.collections.api.RichIterable<T>toSortedList in class AbstractMutableList<T>public FastList<T> toSortedList(Comparator<? super T> comparator)
toSortedList in interface org.eclipse.collections.api.RichIterable<T>toSortedList in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
takeWhile in interface org.eclipse.collections.api.list.ListIterable<T>takeWhile in interface org.eclipse.collections.api.list.MutableList<T>takeWhile in interface org.eclipse.collections.api.ordered.OrderedIterable<T>takeWhile in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>takeWhile in class AbstractMutableList<T>public org.eclipse.collections.api.list.MutableList<T> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
dropWhile in interface org.eclipse.collections.api.list.ListIterable<T>dropWhile in interface org.eclipse.collections.api.list.MutableList<T>dropWhile in interface org.eclipse.collections.api.ordered.OrderedIterable<T>dropWhile in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>dropWhile in class AbstractMutableList<T>public org.eclipse.collections.api.partition.list.PartitionMutableList<T> partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
partitionWhile in interface org.eclipse.collections.api.list.ListIterable<T>partitionWhile in interface org.eclipse.collections.api.list.MutableList<T>partitionWhile in interface org.eclipse.collections.api.ordered.OrderedIterable<T>partitionWhile in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>partitionWhile in class AbstractMutableList<T>public boolean equals(Object that)
equals in interface Collection<T>equals in interface List<T>equals in interface org.eclipse.collections.api.list.ListIterable<T>equals in class AbstractMutableList<T>public boolean fastListEquals(FastList<?> that)
public int hashCode()
hashCode in interface Collection<T>hashCode in interface List<T>hashCode in interface org.eclipse.collections.api.list.ListIterable<T>hashCode in class AbstractMutableList<T>public void writeExternal(ObjectOutput out) throws IOException
writeExternal in interface ExternalizableIOExceptionpublic void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal in interface ExternalizableIOExceptionClassNotFoundExceptionCopyright © 2004–2018. All rights reserved.