public abstract class AbstractMutableList<T> extends AbstractMutableCollection<T> implements MutableList<T>
| Constructor and Description |
|---|
AbstractMutableList() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(Predicate<? super T> predicate) |
<P> boolean |
allSatisfyWith(Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
anySatisfy(Predicate<? super T> predicate) |
<P> boolean |
anySatisfyWith(Predicate2<? super T,? super P> predicate,
P parameter) |
void |
appendString(Appendable appendable,
String separator) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
ParallelListIterable<T> |
asParallel(ExecutorService executorService,
int batchSize) |
ReverseIterable<T> |
asReversed() |
MutableList<T> |
asSynchronized() |
MutableList<T> |
asUnmodifiable() |
int |
binarySearch(T key,
Comparator<? super T> comparator) |
RichIterable<RichIterable<T>> |
chunk(int size) |
MutableList<T> |
clone() |
<V,R extends Collection<V>> |
collect(Function<? super T,? extends V> function,
R target) |
<V,R extends Collection<V>> |
collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function,
R target) |
<P,A,R extends Collection<A>> |
collectWith(Function2<? super T,? super P,? extends A> function,
P parameter,
R target) |
boolean |
contains(Object object) |
boolean |
containsAll(Collection<?> source) |
<S> boolean |
corresponds(OrderedIterable<S> other,
Predicate2<? super T,? super S> predicate) |
int |
count(Predicate<? super T> predicate) |
<P> int |
countWith(Predicate2<? super T,? super P> predicate,
P parameter) |
T |
detect(Predicate<? super T> predicate) |
int |
detectIndex(Predicate<? super T> predicate) |
int |
detectLastIndex(Predicate<? super T> predicate) |
Optional<T> |
detectOptional(Predicate<? super T> predicate) |
<P> T |
detectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<P> Optional<T> |
detectWithOptional(Predicate2<? super T,? super P> predicate,
P parameter) |
MutableList<T> |
distinct() |
MutableList<T> |
distinct(HashingStrategy<? super T> hashingStrategy) |
<V> MutableList<T> |
distinctBy(Function<? super T,? extends V> function) |
MutableList<T> |
drop(int count) |
MutableList<T> |
dropWhile(Predicate<? super T> predicate) |
void |
each(Procedure<? super T> procedure) |
boolean |
equals(Object that) |
<V,R extends Collection<V>> |
flatCollect(Function<? super T,? extends Iterable<V>> function,
R target) |
void |
forEach(int from,
int to,
Procedure<? super T> procedure) |
<P> void |
forEachWith(Procedure2<? super T,? super P> procedure,
P parameter) |
void |
forEachWithIndex(int fromIndex,
int toIndex,
ObjectIntProcedure<? super T> objectIntProcedure) |
void |
forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) |
T |
getFirst() |
T |
getLast() |
<V> FastListMultimap<V,T> |
groupBy(Function<? super T,? extends V> function) |
<V> FastListMultimap<V,T> |
groupByEach(Function<? super T,? extends Iterable<V>> function) |
<K> MutableMap<K,T> |
groupByUniqueKey(Function<? super T,? extends K> function) |
int |
hashCode() |
int |
indexOf(Object object) |
float |
injectInto(float injectedValue,
FloatObjectToFloatFunction<? super T> function) |
int |
injectInto(int injectedValue,
IntObjectToIntFunction<? super T> function) |
<IV> IV |
injectInto(IV injectedValue,
Function2<? super IV,? super T,? extends IV> function) |
long |
injectInto(long injectedValue,
LongObjectToLongFunction<? super T> function) |
<IV,P> IV |
injectIntoWith(IV injectValue,
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(Function<? super T,? extends V> function) |
T |
min() |
T |
min(Comparator<? super T> comparator) |
<V extends Comparable<? super V>> |
minBy(Function<? super T,? extends V> function) |
MutableList<T> |
newEmpty() |
boolean |
noneSatisfy(Predicate<? super T> predicate) |
<P> boolean |
noneSatisfyWith(Predicate2<? super T,? super P> predicate,
P parameter) |
PartitionMutableList<T> |
partition(Predicate<? super T> predicate) |
PartitionMutableList<T> |
partitionWhile(Predicate<? super T> predicate) |
<P> PartitionMutableList<T> |
partitionWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<R extends Collection<T>> |
reject(Predicate<? super T> predicate,
R target) |
<P,R extends Collection<T>> |
rejectWith(Predicate2<? super T,? super P> predicate,
P parameter,
R target) |
boolean |
removeAll(Collection<?> collection) |
boolean |
removeIf(Predicate<? super T> predicate) |
<P> boolean |
removeIfWith(Predicate2<? super T,? super P> predicate,
P parameter) |
boolean |
retainAll(Collection<?> collection) |
<R extends Collection<T>> |
select(Predicate<? super T> predicate,
R target) |
<P> Twin<MutableList<T>> |
selectAndRejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
<S> MutableList<S> |
selectInstancesOf(Class<S> clazz) |
<P,R extends Collection<T>> |
selectWith(Predicate2<? super T,? super P> predicate,
P parameter,
R target) |
MutableList<T> |
sortThisByBoolean(BooleanFunction<? super T> function) |
MutableList<T> |
sortThisByByte(ByteFunction<? super T> function) |
MutableList<T> |
sortThisByChar(CharFunction<? super T> function) |
MutableList<T> |
sortThisByDouble(DoubleFunction<? super T> function) |
MutableList<T> |
sortThisByFloat(FloatFunction<? super T> function) |
MutableList<T> |
sortThisByInt(IntFunction<? super T> function) |
MutableList<T> |
sortThisByLong(LongFunction<? super T> function) |
MutableList<T> |
sortThisByShort(ShortFunction<? super T> function) |
MutableList<T> |
subList(int fromIndex,
int toIndex) |
double |
sumOfDouble(DoubleFunction<? super T> function) |
double |
sumOfFloat(FloatFunction<? super T> function) |
long |
sumOfInt(IntFunction<? super T> function) |
long |
sumOfLong(LongFunction<? super T> function) |
MutableList<T> |
take(int count) |
MutableList<T> |
takeWhile(Predicate<? super T> predicate) |
MutableList<T> |
tap(Procedure<? super T> procedure) |
MutableSet<T> |
toSet() |
MutableList<T> |
toSortedList() |
<S> MutableList<Pair<T,S>> |
zip(Iterable<S> that) |
<S,R extends Collection<Pair<T,S>>> |
zip(Iterable<S> that,
R target) |
MutableList<Pair<T,Integer>> |
zipWithIndex() |
<R extends Collection<Pair<T,Integer>>> |
zipWithIndex(R target) |
add, addAll, addAllIterable, countBy, countByEach, countByWith, reduce, remove, removeAllIterable, retainAllIterable, sumByDouble, sumByFloat, sumByInt, sumByLongasLazy, containsAllArguments, containsAllIterable, detectWithIfNone, forEach, groupBy, groupByEach, groupByUniqueKey, injectInto, into, isEmpty, toArray, toArray, toBag, toBiMap, toList, toMap, toSortedBag, toSortedBag, toSortedBagBy, toSortedListBy, toSortedMap, toSortedMap, toSortedMapBy, toSortedSet, toSortedSet, toSortedSetBy, toStringcollect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, collectWithIndex, flatCollect, flatCollectWith, reject, rejectWith, rejectWithIndex, reverseThis, select, selectWith, selectWithIndex, shuffleThis, shuffleThis, sortThis, sortThis, sortThisBy, toImmutable, toImmutableList, toReversed, with, withAll, without, withoutAlladdAllIterable, aggregateBy, aggregateInPlaceBy, countBy, countByEach, countByWith, removeAllIterable, retainAllIterable, sumByDouble, sumByFloat, sumByInt, sumByLongadd, add, addAll, addAll, clear, get, isEmpty, remove, remove, replaceAll, set, size, sort, spliterator, toArray, toArrayparallelStream, removeIf, streambinarySearch, forEachInBoth, getreverseForEach, reverseForEachWithIndexcollectWithIndex, getFirstOptional, getLastOptional, rejectWithIndex, selectWithIndex, toStackaggregateBy, appendString, asLazy, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAllArguments, containsAllIterable, containsAny, containsAnyIterable, containsBy, containsNone, containsNoneIterable, countBy, countByEach, countByWith, detectIfNone, detectWithIfNone, flatCollectBoolean, flatCollectByte, flatCollectChar, flatCollectDouble, flatCollectFloat, flatCollectInt, flatCollectLong, flatCollectShort, flatCollectWith, getAny, getOnly, groupBy, groupByAndCollect, groupByEach, groupByUniqueKey, injectInto, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, into, isEmpty, makeString, makeString, makeString, makeString, maxByOptional, maxOptional, maxOptional, minByOptional, minOptional, minOptional, notEmpty, reduce, reduceInPlace, reduceInPlace, size, summarizeDouble, summarizeFloat, summarizeInt, summarizeLong, toArray, toArray, toBag, toBiMap, toImmutableBag, toImmutableBiMap, toImmutableMap, toImmutableSet, toImmutableSortedBag, toImmutableSortedBag, toImmutableSortedBagBy, toImmutableSortedList, toImmutableSortedList, toImmutableSortedListBy, toImmutableSortedSet, toImmutableSortedSet, toImmutableSortedSetBy, toList, toMap, toMap, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedMapBy, toSortedSet, toSortedSet, toSortedSetBy, toStringpublic MutableList<T> clone()
clone in interface MutableList<T>clone in class Objectpublic boolean equals(Object that)
public int hashCode()
public void each(Procedure<? super T> procedure)
each in interface RichIterable<T>public void forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)
forEachWithIndex in interface InternalIterable<T>forEachWithIndex in interface OrderedIterable<T>forEachWithIndex in class AbstractRichIterable<T>public <P> void forEachWith(Procedure2<? super T,? super P> procedure, P parameter)
forEachWith in interface InternalIterable<T>forEachWith in class AbstractRichIterable<T>public <S,R extends Collection<Pair<T,S>>> R zip(Iterable<S> that, R target)
zip in interface OrderedIterable<T>zip in interface RichIterable<T>zip in class AbstractRichIterable<T>public <R extends Collection<Pair<T,Integer>>> R zipWithIndex(R target)
zipWithIndex in interface OrderedIterable<T>zipWithIndex in interface RichIterable<T>zipWithIndex in class AbstractRichIterable<T>public void forEachWithIndex(int fromIndex,
int toIndex,
ObjectIntProcedure<? super T> objectIntProcedure)
forEachWithIndex in interface OrderedIterable<T>public <R extends Collection<T>> R select(Predicate<? super T> predicate, R target)
select in interface RichIterable<T>select in class AbstractRichIterable<T>public <P,R extends Collection<T>> R selectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)
selectWith in interface RichIterable<T>selectWith in class AbstractRichIterable<T>public <R extends Collection<T>> R reject(Predicate<? super T> predicate, R target)
reject in interface RichIterable<T>reject in class AbstractRichIterable<T>public <P,R extends Collection<T>> R rejectWith(Predicate2<? super T,? super P> predicate, P parameter, R target)
rejectWith in interface RichIterable<T>rejectWith in class AbstractRichIterable<T>public <P> Twin<MutableList<T>> selectAndRejectWith(Predicate2<? super T,? super P> predicate, P parameter)
selectAndRejectWith in interface MutableCollection<T>selectAndRejectWith in class AbstractMutableCollection<T>public PartitionMutableList<T> partition(Predicate<? super T> predicate)
partition in interface MutableCollection<T>partition in interface ListIterable<T>partition in interface MutableList<T>partition in interface OrderedIterable<T>partition in interface ReversibleIterable<T>partition in interface RichIterable<T>public <P> PartitionMutableList<T> partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
partitionWith in interface MutableCollection<T>partitionWith in interface ListIterable<T>partitionWith in interface MutableList<T>partitionWith in interface OrderedIterable<T>partitionWith in interface ReversibleIterable<T>partitionWith in interface RichIterable<T>public <S> MutableList<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface MutableCollection<T>selectInstancesOf in interface ListIterable<T>selectInstancesOf in interface MutableList<T>selectInstancesOf in interface OrderedIterable<T>selectInstancesOf in interface ReversibleIterable<T>selectInstancesOf in interface RichIterable<T>public boolean removeIf(Predicate<? super T> predicate)
removeIf in interface MutableCollection<T>removeIf in class AbstractMutableCollection<T>public <P> boolean removeIfWith(Predicate2<? super T,? super P> predicate, P parameter)
removeIfWith in interface MutableCollection<T>removeIfWith in class AbstractMutableCollection<T>public <V,R extends Collection<V>> R collect(Function<? super T,? extends V> function, R target)
collect in interface RichIterable<T>collect in class AbstractRichIterable<T>public <V,R extends Collection<V>> R flatCollect(Function<? super T,? extends Iterable<V>> function, R target)
flatCollect in interface RichIterable<T>flatCollect in class AbstractRichIterable<T>public <P,A,R extends Collection<A>> R collectWith(Function2<? super T,? super P,? extends A> function, P parameter, R target)
collectWith in interface RichIterable<T>collectWith in class AbstractRichIterable<T>public <V,R extends Collection<V>> R collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function, R target)
collectIf in interface RichIterable<T>collectIf in class AbstractRichIterable<T>public T detect(Predicate<? super T> predicate)
detect in interface RichIterable<T>detect in class AbstractRichIterable<T>public <P> T detectWith(Predicate2<? super T,? super P> predicate, P parameter)
detectWith in interface RichIterable<T>detectWith in class AbstractRichIterable<T>public Optional<T> detectOptional(Predicate<? super T> predicate)
detectOptional in interface RichIterable<T>detectOptional in class AbstractRichIterable<T>public <P> Optional<T> detectWithOptional(Predicate2<? super T,? super P> predicate, P parameter)
detectWithOptional in interface RichIterable<T>detectWithOptional in class AbstractRichIterable<T>public int detectIndex(Predicate<? super T> predicate)
detectIndex in interface OrderedIterable<T>public int detectLastIndex(Predicate<? super T> predicate)
detectLastIndex in interface ReversibleIterable<T>public T min(Comparator<? super T> comparator)
min in interface RichIterable<T>min in class AbstractRichIterable<T>public T max(Comparator<? super T> comparator)
max in interface RichIterable<T>max in class AbstractRichIterable<T>public T min()
min in interface OrderedIterable<T>min in interface RichIterable<T>min in class AbstractRichIterable<T>public T max()
max in interface OrderedIterable<T>max in interface RichIterable<T>max in class AbstractRichIterable<T>public <V extends Comparable<? super V>> T minBy(Function<? super T,? extends V> function)
minBy in interface RichIterable<T>minBy in class AbstractRichIterable<T>public <V extends Comparable<? super V>> T maxBy(Function<? super T,? extends V> function)
maxBy in interface RichIterable<T>maxBy in class AbstractRichIterable<T>public int count(Predicate<? super T> predicate)
count in interface RichIterable<T>count in class AbstractRichIterable<T>public <P> int countWith(Predicate2<? super T,? super P> predicate, P parameter)
countWith in interface RichIterable<T>countWith in class AbstractRichIterable<T>public <S> boolean corresponds(OrderedIterable<S> other, Predicate2<? super T,? super S> predicate)
corresponds in interface OrderedIterable<T>public boolean anySatisfy(Predicate<? super T> predicate)
anySatisfy in interface RichIterable<T>anySatisfy in class AbstractRichIterable<T>public <P> boolean anySatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)
anySatisfyWith in interface RichIterable<T>anySatisfyWith in class AbstractRichIterable<T>public boolean allSatisfy(Predicate<? super T> predicate)
allSatisfy in interface RichIterable<T>allSatisfy in class AbstractRichIterable<T>public <P> boolean allSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)
allSatisfyWith in interface RichIterable<T>allSatisfyWith in class AbstractRichIterable<T>public boolean noneSatisfy(Predicate<? super T> predicate)
noneSatisfy in interface RichIterable<T>noneSatisfy in class AbstractRichIterable<T>public <P> boolean noneSatisfyWith(Predicate2<? super T,? super P> predicate, P parameter)
noneSatisfyWith in interface RichIterable<T>noneSatisfyWith in class AbstractRichIterable<T>public <IV> IV injectInto(IV injectedValue,
Function2<? super IV,? super T,? extends IV> function)
injectInto in interface RichIterable<T>injectInto in class AbstractRichIterable<T>public int injectInto(int injectedValue,
IntObjectToIntFunction<? super T> function)
injectInto in interface RichIterable<T>injectInto in class AbstractRichIterable<T>public float injectInto(float injectedValue,
FloatObjectToFloatFunction<? super T> function)
injectInto in interface RichIterable<T>injectInto in class AbstractRichIterable<T>public MutableList<T> distinct()
distinct in interface ListIterable<T>distinct in interface MutableList<T>distinct in interface OrderedIterable<T>distinct in interface ReversibleIterable<T>public MutableList<T> distinct(HashingStrategy<? super T> hashingStrategy)
distinct in interface ListIterable<T>distinct in interface MutableList<T>public <V> MutableList<T> distinctBy(Function<? super T,? extends V> function)
distinctBy in interface ListIterable<T>distinctBy in interface MutableList<T>public long sumOfInt(IntFunction<? super T> function)
sumOfInt in interface RichIterable<T>sumOfInt in class AbstractRichIterable<T>public long sumOfLong(LongFunction<? super T> function)
sumOfLong in interface RichIterable<T>sumOfLong in class AbstractRichIterable<T>public double sumOfFloat(FloatFunction<? super T> function)
sumOfFloat in interface RichIterable<T>sumOfFloat in class AbstractRichIterable<T>public double sumOfDouble(DoubleFunction<? super T> function)
sumOfDouble in interface RichIterable<T>sumOfDouble in class AbstractRichIterable<T>public long injectInto(long injectedValue,
LongObjectToLongFunction<? super T> function)
injectInto in interface RichIterable<T>injectInto in class AbstractRichIterable<T>public <IV,P> IV injectIntoWith(IV injectValue,
Function3<? super IV,? super T,? super P,? extends IV> function,
P parameter)
injectIntoWith in interface MutableCollection<T>injectIntoWith in class AbstractMutableCollection<T>public MutableList<T> toSortedList()
toSortedList in interface RichIterable<T>public MutableSet<T> toSet()
toSet in interface RichIterable<T>toSet in class AbstractRichIterable<T>public MutableList<T> asUnmodifiable()
asUnmodifiable in interface MutableCollection<T>asUnmodifiable in interface MutableList<T>public MutableList<T> asSynchronized()
asSynchronized in interface MutableCollection<T>asSynchronized in interface MutableList<T>public MutableList<T> sortThisByInt(IntFunction<? super T> function)
sortThisByInt in interface MutableList<T>public MutableList<T> sortThisByBoolean(BooleanFunction<? super T> function)
sortThisByBoolean in interface MutableList<T>public MutableList<T> sortThisByChar(CharFunction<? super T> function)
sortThisByChar in interface MutableList<T>public MutableList<T> sortThisByByte(ByteFunction<? super T> function)
sortThisByByte in interface MutableList<T>public MutableList<T> sortThisByShort(ShortFunction<? super T> function)
sortThisByShort in interface MutableList<T>public MutableList<T> sortThisByFloat(FloatFunction<? super T> function)
sortThisByFloat in interface MutableList<T>public MutableList<T> sortThisByLong(LongFunction<? super T> function)
sortThisByLong in interface MutableList<T>public MutableList<T> sortThisByDouble(DoubleFunction<? super T> function)
sortThisByDouble in interface MutableList<T>public MutableList<T> newEmpty()
newEmpty in interface MutableCollection<T>newEmpty in interface MutableList<T>public MutableList<T> tap(Procedure<? super T> procedure)
tap in interface MutableCollection<T>tap in interface ListIterable<T>tap in interface MutableList<T>tap in interface OrderedIterable<T>tap in interface ReversibleIterable<T>tap in interface RichIterable<T>public void forEach(int from,
int to,
Procedure<? super T> procedure)
forEach in interface OrderedIterable<T>public int indexOf(Object object)
public int lastIndexOf(Object object)
lastIndexOf in interface List<T>lastIndexOf in interface ListIterable<T>public ListIterator<T> listIterator()
listIterator in interface List<T>listIterator in interface ListIterable<T>public ListIterator<T> listIterator(int index)
listIterator in interface List<T>listIterator in interface ListIterable<T>public MutableList<T> subList(int fromIndex, int toIndex)
subList in interface List<T>subList in interface ListIterable<T>subList in interface MutableList<T>public boolean contains(Object object)
contains in interface Collection<T>contains in interface List<T>contains in interface 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 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()
getFirst in interface ListIterable<T>getFirst in interface OrderedIterable<T>getFirst in interface RichIterable<T>public T getLast()
getLast in interface ListIterable<T>getLast in interface OrderedIterable<T>getLast in interface RichIterable<T>public void appendString(Appendable appendable, String separator)
appendString in interface RichIterable<T>appendString in class AbstractRichIterable<T>public void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface RichIterable<T>appendString in class AbstractRichIterable<T>public <V> FastListMultimap<V,T> groupBy(Function<? super T,? extends V> function)
groupBy in interface MutableCollection<T>groupBy in interface ListIterable<T>groupBy in interface MutableList<T>groupBy in interface OrderedIterable<T>groupBy in interface ReversibleIterable<T>groupBy in interface RichIterable<T>public <V> FastListMultimap<V,T> groupByEach(Function<? super T,? extends Iterable<V>> function)
groupByEach in interface MutableCollection<T>groupByEach in interface ListIterable<T>groupByEach in interface MutableList<T>groupByEach in interface OrderedIterable<T>groupByEach in interface ReversibleIterable<T>groupByEach in interface RichIterable<T>public <K> MutableMap<K,T> groupByUniqueKey(Function<? super T,? extends K> function)
groupByUniqueKey in interface MutableCollection<T>groupByUniqueKey in interface RichIterable<T>groupByUniqueKey in class AbstractMutableCollection<T>public <S> MutableList<Pair<T,S>> zip(Iterable<S> that)
zip in interface MutableCollection<T>zip in interface ListIterable<T>zip in interface MutableList<T>zip in interface OrderedIterable<T>zip in interface ReversibleIterable<T>zip in interface RichIterable<T>public MutableList<Pair<T,Integer>> zipWithIndex()
zipWithIndex in interface MutableCollection<T>zipWithIndex in interface ListIterable<T>zipWithIndex in interface MutableList<T>zipWithIndex in interface OrderedIterable<T>zipWithIndex in interface ReversibleIterable<T>zipWithIndex in interface RichIterable<T>public ReverseIterable<T> asReversed()
asReversed in interface ReversibleIterable<T>public ParallelListIterable<T> asParallel(ExecutorService executorService, int batchSize)
asParallel in interface ListIterable<T>public int binarySearch(T key, Comparator<? super T> comparator)
binarySearch in interface ListIterable<T>public RichIterable<RichIterable<T>> chunk(int size)
chunk in interface RichIterable<T>chunk in class AbstractMutableCollection<T>public MutableList<T> take(int count)
take in interface ListIterable<T>take in interface MutableList<T>take in interface ReversibleIterable<T>public MutableList<T> takeWhile(Predicate<? super T> predicate)
takeWhile in interface ListIterable<T>takeWhile in interface MutableList<T>takeWhile in interface OrderedIterable<T>takeWhile in interface ReversibleIterable<T>public MutableList<T> drop(int count)
drop in interface ListIterable<T>drop in interface MutableList<T>drop in interface ReversibleIterable<T>public MutableList<T> dropWhile(Predicate<? super T> predicate)
dropWhile in interface ListIterable<T>dropWhile in interface MutableList<T>dropWhile in interface OrderedIterable<T>dropWhile in interface ReversibleIterable<T>public PartitionMutableList<T> partitionWhile(Predicate<? super T> predicate)
partitionWhile in interface ListIterable<T>partitionWhile in interface MutableList<T>partitionWhile in interface OrderedIterable<T>partitionWhile in interface ReversibleIterable<T>Copyright © 2004–2022. All rights reserved.