public abstract class AbstractMutableList<T> extends AbstractMutableCollection<T> implements org.eclipse.collections.api.list.MutableList<T>
| Constructor and Description |
|---|
AbstractMutableList() |
| Modifier and Type | Method and Description |
|---|---|
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 separator) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
org.eclipse.collections.api.list.ParallelListIterable<T> |
asParallel(ExecutorService executorService,
int batchSize) |
ReverseIterable<T> |
asReversed() |
org.eclipse.collections.api.list.MutableList<T> |
asSynchronized() |
org.eclipse.collections.api.list.MutableList<T> |
asUnmodifiable() |
int |
binarySearch(T key) |
int |
binarySearch(T key,
Comparator<? super T> comparator) |
org.eclipse.collections.api.list.MutableList<T> |
clone() |
<V> org.eclipse.collections.api.list.MutableList<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) |
org.eclipse.collections.api.list.primitive.MutableByteList |
collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction) |
org.eclipse.collections.api.list.primitive.MutableCharList |
collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction) |
org.eclipse.collections.api.list.primitive.MutableDoubleList |
collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction) |
org.eclipse.collections.api.list.primitive.MutableFloatList |
collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction) |
<V> org.eclipse.collections.api.list.MutableList<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) |
org.eclipse.collections.api.list.primitive.MutableLongList |
collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction) |
org.eclipse.collections.api.list.primitive.MutableShortList |
collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction) |
<P,A,R extends Collection<A>> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends A> function,
P parameter,
R target) |
<P,V> org.eclipse.collections.api.list.MutableList<V> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function,
P parameter) |
boolean |
contains(Object object) |
boolean |
containsAll(Collection<?> 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> function) |
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> function) |
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) |
boolean |
equals(Object that) |
<V> org.eclipse.collections.api.list.MutableList<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) |
<P> void |
forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T,? super P> procedure,
P parameter) |
void |
forEachWithIndex(int fromIndex,
int toIndex,
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 |
getFirst() |
T |
getLast() |
<V> FastListMultimap<V,T> |
groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V> FastListMultimap<V,T> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<K> org.eclipse.collections.api.map.MutableMap<K,T> |
groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T,? extends K> function) |
int |
hashCode() |
int |
indexOf(Object object) |
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) |
Iterator<T> |
iterator() |
int |
lastIndexOf(Object object) |
ListIterator<T> |
listIterator() |
ListIterator<T> |
listIterator(int index) |
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) |
org.eclipse.collections.api.list.MutableList<T> |
newEmpty() |
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) |
org.eclipse.collections.api.partition.list.PartitionMutableList<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> org.eclipse.collections.api.partition.list.PartitionMutableList<T> |
partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.list.MutableList<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> org.eclipse.collections.api.list.MutableList<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) |
boolean |
removeAll(Collection<?> collection) |
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) |
boolean |
retainAll(Collection<?> collection) |
void |
reverseForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
org.eclipse.collections.api.list.MutableList<T> |
reverseThis() |
org.eclipse.collections.api.list.MutableList<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> org.eclipse.collections.api.list.MutableList<S> |
selectInstancesOf(Class<S> clazz) |
<P> org.eclipse.collections.api.list.MutableList<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) |
org.eclipse.collections.api.list.MutableList<T> |
shuffleThis() |
org.eclipse.collections.api.list.MutableList<T> |
shuffleThis(Random rnd) |
org.eclipse.collections.api.list.MutableList<T> |
sortThis() |
org.eclipse.collections.api.list.MutableList<T> |
sortThis(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
sortThisBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
sortThisByShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> function) |
org.eclipse.collections.api.list.MutableList<T> |
subList(int fromIndex,
int toIndex) |
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) |
org.eclipse.collections.api.list.MutableList<T> |
tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
org.eclipse.collections.api.list.ImmutableList<T> |
toImmutable() |
org.eclipse.collections.api.list.MutableList<T> |
toList() |
org.eclipse.collections.api.list.MutableList<T> |
toReversed() |
org.eclipse.collections.api.set.MutableSet<T> |
toSet() |
org.eclipse.collections.api.list.MutableList<T> |
toSortedList() |
org.eclipse.collections.api.list.MutableList<T> |
toSortedList(Comparator<? super T> comparator) |
org.eclipse.collections.api.stack.MutableStack<T> |
toStack() |
org.eclipse.collections.api.list.MutableList<T> |
with(T element) |
org.eclipse.collections.api.list.MutableList<T> |
withAll(Iterable<? extends T> elements) |
org.eclipse.collections.api.list.MutableList<T> |
without(T element) |
org.eclipse.collections.api.list.MutableList<T> |
withoutAll(Iterable<? extends T> elements) |
<S> org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<T,S>> |
zip(Iterable<S> that) |
<S,R extends Collection<org.eclipse.collections.api.tuple.Pair<T,S>>> |
zip(Iterable<S> that,
R target) |
org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<T,Integer>> |
zipWithIndex() |
<R extends Collection<org.eclipse.collections.api.tuple.Pair<T,Integer>>> |
zipWithIndex(R target) |
add, addAll, addAllIterable, aggregateBy, aggregateInPlaceBy, chunk, remove, removeAllIterable, retainAllIterableappendString, asLazy, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAllArguments, containsAllIterable, forEach, groupBy, groupByEach, groupByUniqueKey, injectInto, isEmpty, makeString, makeString, makeString, notEmpty, sumByDouble, sumByFloat, sumByInt, sumByLong, toArray, toArray, toBag, toMap, toSortedBag, toSortedBag, toSortedBagBy, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toStringaddAllIterable, aggregateBy, aggregateInPlaceBy, removeAllIterable, retainAllIterableadd, add, addAll, addAll, clear, get, isEmpty, remove, remove, replaceAll, set, size, sort, spliterator, toArray, toArrayparallelStream, removeIf, streamappendString, asLazy, chunk, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAllArguments, containsAllIterable, groupBy, groupByEach, groupByUniqueKey, injectInto, isEmpty, makeString, makeString, makeString, notEmpty, size, sumByDouble, sumByFloat, sumByInt, sumByLong, toArray, toArray, toBag, toMap, toSortedBag, toSortedBag, toSortedBagBy, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toStringpublic org.eclipse.collections.api.list.MutableList<T> clone()
public boolean equals(Object that)
public int hashCode()
public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
each in interface org.eclipse.collections.api.RichIterable<T>public void reverseForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
reverseForEach in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>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 AbstractRichIterable<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 AbstractRichIterable<T>public <S,R extends Collection<org.eclipse.collections.api.tuple.Pair<T,S>>> R zip(Iterable<S> that, R target)
zip in interface org.eclipse.collections.api.ordered.OrderedIterable<T>zip in interface org.eclipse.collections.api.RichIterable<T>zip in class AbstractRichIterable<T>public <R extends Collection<org.eclipse.collections.api.tuple.Pair<T,Integer>>> R zipWithIndex(R target)
zipWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>zipWithIndex in interface org.eclipse.collections.api.RichIterable<T>zipWithIndex in class AbstractRichIterable<T>public void forEachWithIndex(int fromIndex,
int toIndex,
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
forEachWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>public org.eclipse.collections.api.list.MutableList<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>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 AbstractRichIterable<T>public <P> org.eclipse.collections.api.list.MutableList<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>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 AbstractRichIterable<T>public org.eclipse.collections.api.list.MutableList<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>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 AbstractRichIterable<T>public <P> org.eclipse.collections.api.list.MutableList<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>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 AbstractRichIterable<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 AbstractMutableCollection<T>public org.eclipse.collections.api.partition.list.PartitionMutableList<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>public <P> org.eclipse.collections.api.partition.list.PartitionMutableList<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>public <S> org.eclipse.collections.api.list.MutableList<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>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 AbstractMutableCollection<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 AbstractMutableCollection<T>public <V> org.eclipse.collections.api.list.MutableList<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>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>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>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>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>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>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>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>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>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 AbstractRichIterable<T>public <V> org.eclipse.collections.api.list.MutableList<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>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 AbstractRichIterable<T>public <P,V> org.eclipse.collections.api.list.MutableList<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>public <P,A,R extends Collection<A>> R collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends A> function, P parameter, R target)
collectWith in interface org.eclipse.collections.api.RichIterable<T>collectWith in class AbstractRichIterable<T>public <V> org.eclipse.collections.api.list.MutableList<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>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 AbstractRichIterable<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 AbstractRichIterable<T>public T detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function0<? extends T> function)
detectIfNone in interface org.eclipse.collections.api.RichIterable<T>detectIfNone in class AbstractRichIterable<T>public int detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detectIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>public int detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
detectLastIndex in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>public T min(Comparator<? super T> comparator)
min in interface org.eclipse.collections.api.RichIterable<T>min in class AbstractRichIterable<T>public T max(Comparator<? super T> comparator)
max in interface org.eclipse.collections.api.RichIterable<T>max in class AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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> function)
detectWithIfNone in interface org.eclipse.collections.api.RichIterable<T>detectWithIfNone in class AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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>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 AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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 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 AbstractRichIterable<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>public org.eclipse.collections.api.list.MutableList<T> distinct(org.eclipse.collections.api.block.HashingStrategy<? super T> hashingStrategy)
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 AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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 AbstractRichIterable<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 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 AbstractMutableCollection<T>public org.eclipse.collections.api.list.MutableList<T> toList()
toList in interface org.eclipse.collections.api.RichIterable<T>toList in class AbstractRichIterable<T>public org.eclipse.collections.api.list.MutableList<T> toSortedList()
toSortedList in interface org.eclipse.collections.api.RichIterable<T>toSortedList in class AbstractRichIterable<T>public org.eclipse.collections.api.list.MutableList<T> toSortedList(Comparator<? super T> comparator)
toSortedList in interface org.eclipse.collections.api.RichIterable<T>toSortedList in class AbstractRichIterable<T>public org.eclipse.collections.api.set.MutableSet<T> toSet()
toSet in interface org.eclipse.collections.api.RichIterable<T>toSet in class AbstractRichIterable<T>public org.eclipse.collections.api.stack.MutableStack<T> toStack()
public org.eclipse.collections.api.list.MutableList<T> asUnmodifiable()
public org.eclipse.collections.api.list.ImmutableList<T> toImmutable()
public org.eclipse.collections.api.list.MutableList<T> asSynchronized()
public org.eclipse.collections.api.list.MutableList<T> sortThis(Comparator<? super T> comparator)
sortThis in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThis()
sortThis in interface org.eclipse.collections.api.list.MutableList<T>public <V extends Comparable<? super V>> org.eclipse.collections.api.list.MutableList<T> sortThisBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
sortThisBy in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> function)
sortThisByInt in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> function)
sortThisByBoolean in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> function)
sortThisByChar in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> function)
sortThisByByte in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> function)
sortThisByShort in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> function)
sortThisByFloat in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> function)
sortThisByLong in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> sortThisByDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> function)
sortThisByDouble in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> newEmpty()
public org.eclipse.collections.api.list.MutableList<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
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>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>public ListIterator<T> listIterator()
listIterator in interface List<T>listIterator in interface org.eclipse.collections.api.list.ListIterable<T>public ListIterator<T> listIterator(int index)
listIterator in interface List<T>listIterator in interface org.eclipse.collections.api.list.ListIterable<T>public org.eclipse.collections.api.list.MutableList<T> toReversed()
public org.eclipse.collections.api.list.MutableList<T> reverseThis()
reverseThis in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> shuffleThis()
shuffleThis in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> shuffleThis(Random rnd)
shuffleThis in interface org.eclipse.collections.api.list.MutableList<T>public org.eclipse.collections.api.list.MutableList<T> subList(int fromIndex, int toIndex)
public boolean contains(Object object)
contains in interface Collection<T>contains in interface List<T>contains in interface org.eclipse.collections.api.RichIterable<T>contains in class AbstractRichIterable<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 AbstractRichIterable<T>public boolean removeAll(Collection<?> collection)
removeAll in interface Collection<T>removeAll in interface List<T>removeAll in class AbstractMutableCollection<T>public boolean retainAll(Collection<?> collection)
retainAll in interface Collection<T>retainAll in interface List<T>retainAll in class AbstractMutableCollection<T>public T getFirst()
public T getLast()
public void appendString(Appendable appendable, String separator)
appendString in interface org.eclipse.collections.api.RichIterable<T>appendString 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 AbstractRichIterable<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>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>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 AbstractMutableCollection<T>public <S> org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<T,S>> zip(Iterable<S> that)
zip in interface org.eclipse.collections.api.collection.MutableCollection<T>zip in interface org.eclipse.collections.api.list.ListIterable<T>zip in interface org.eclipse.collections.api.list.MutableList<T>zip in interface org.eclipse.collections.api.ordered.OrderedIterable<T>zip in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>zip in interface org.eclipse.collections.api.RichIterable<T>public org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<T,Integer>> zipWithIndex()
zipWithIndex in interface org.eclipse.collections.api.collection.MutableCollection<T>zipWithIndex in interface org.eclipse.collections.api.list.ListIterable<T>zipWithIndex in interface org.eclipse.collections.api.list.MutableList<T>zipWithIndex in interface org.eclipse.collections.api.ordered.OrderedIterable<T>zipWithIndex in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>zipWithIndex in interface org.eclipse.collections.api.RichIterable<T>public org.eclipse.collections.api.list.MutableList<T> withAll(Iterable<? extends T> elements)
public org.eclipse.collections.api.list.MutableList<T> withoutAll(Iterable<? extends T> elements)
public ReverseIterable<T> asReversed()
asReversed in interface org.eclipse.collections.api.ordered.ReversibleIterable<T>public org.eclipse.collections.api.list.ParallelListIterable<T> asParallel(ExecutorService executorService, int batchSize)
asParallel in interface org.eclipse.collections.api.list.ListIterable<T>public int binarySearch(T key, Comparator<? super T> comparator)
binarySearch in interface org.eclipse.collections.api.list.ListIterable<T>public int binarySearch(T key)
binarySearch in interface org.eclipse.collections.api.list.ListIterable<T>public org.eclipse.collections.api.list.MutableList<T> take(int count)
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>public org.eclipse.collections.api.list.MutableList<T> drop(int count)
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>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>Copyright © 2004–2017. All rights reserved.