public interface MutableIntList extends MutableIntCollection, IntList
| Modifier and Type | Method and Description |
|---|---|
boolean |
addAllAtIndex(int index,
int... source) |
boolean |
addAllAtIndex(int index,
IntIterable source) |
void |
addAtIndex(int index,
int element) |
MutableIntList |
asSynchronized() |
MutableIntList |
asUnmodifiable() |
<V> MutableList<V> |
collect(IntToObjectFunction<? extends V> function) |
MutableIntList |
distinct() |
MutableIntList |
reject(IntPredicate predicate) |
int |
removeAtIndex(int index) |
MutableIntList |
reverseThis() |
MutableIntList |
select(IntPredicate predicate) |
int |
set(int index,
int element) |
MutableIntList |
sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
MutableIntList |
subList(int fromIndex,
int toIndex) |
ImmutableIntList |
toImmutable()
Returns an immutable copy of this list.
|
MutableIntList |
toReversed() |
MutableIntList |
with(int element) |
MutableIntList |
withAll(IntIterable elements) |
MutableIntList |
without(int element) |
MutableIntList |
withoutAll(IntIterable elements) |
add, addAll, addAll, clear, intIterator, remove, removeAll, removeAll, retainAll, retainAllbinarySearch, dotProduct, equals, get, hashCode, lastIndexOfasReversed, getLast, injectIntoWithIndexforEachWithIndex, getFirst, indexOfallSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringvoid addAtIndex(int index,
int element)
boolean addAllAtIndex(int index,
int... source)
boolean addAllAtIndex(int index,
IntIterable source)
int removeAtIndex(int index)
int set(int index,
int element)
MutableIntList select(IntPredicate predicate)
select in interface IntIterableselect in interface IntListselect in interface MutableIntCollectionselect in interface OrderedIntIterableselect in interface ReversibleIntIterableMutableIntList reject(IntPredicate predicate)
reject in interface IntIterablereject in interface IntListreject in interface MutableIntCollectionreject in interface OrderedIntIterablereject in interface ReversibleIntIterableMutableIntList with(int element)
with in interface MutableIntCollectionMutableIntList without(int element)
without in interface MutableIntCollectionMutableIntList withAll(IntIterable elements)
withAll in interface MutableIntCollectionMutableIntList withoutAll(IntIterable elements)
withoutAll in interface MutableIntCollection<V> MutableList<V> collect(IntToObjectFunction<? extends V> function)
collect in interface IntIterablecollect in interface IntListcollect in interface MutableIntCollectioncollect in interface OrderedIntIterablecollect in interface ReversibleIntIterableMutableIntList reverseThis()
MutableIntList toReversed()
toReversed in interface IntListtoReversed in interface ReversibleIntIterableMutableIntList distinct()
distinct in interface IntListdistinct in interface ReversibleIntIterableMutableIntList sortThis()
MutableIntList asUnmodifiable()
asUnmodifiable in interface MutableIntCollectionMutableIntList asSynchronized()
asSynchronized in interface MutableIntCollectionImmutableIntList toImmutable()
toImmutable in interface IntListtoImmutable in interface MutableIntCollectionMutableIntList subList(int fromIndex, int toIndex)
Copyright © 2004–2017. All rights reserved.