FloatIterable, FloatList, MutableFloatCollection, OrderedFloatIterable, PrimitiveIterable, ReversibleFloatIterableFloatArrayList, SynchronizedFloatList, UnmodifiableFloatListpublic interface MutableFloatList extends MutableFloatCollection, FloatList
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
addAllAtIndex(int index,
float... source) |
|
boolean |
addAllAtIndex(int index,
FloatIterable source) |
|
void |
addAtIndex(int index,
float element) |
|
MutableFloatList |
asSynchronized() |
|
MutableFloatList |
asUnmodifiable() |
|
<V> MutableList<V> |
collect(FloatToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
default <V> MutableList<V> |
collectWithIndex(FloatIntToObjectFunction<? extends V> function) |
Returns a new MutableList using results obtained by applying the specified function to each element
and its corresponding index.
|
MutableFloatList |
distinct() |
|
MutableFloatList |
reject(FloatPredicate predicate) |
Returns a new FloatIterable with all of the elements in the FloatIterable that
return false for the specified predicate.
|
float |
removeAtIndex(int index) |
|
MutableFloatList |
reverseThis() |
|
MutableFloatList |
select(FloatPredicate predicate) |
Returns a new FloatIterable with all of the elements in the FloatIterable that
return true for the specified predicate.
|
float |
set(int index,
float element) |
|
MutableFloatList |
sortThis() |
Sorts this list mutating its contents and returns the same mutable list (this).
|
MutableFloatList |
subList(int fromIndex,
int toIndex) |
|
default MutableFloatList |
tap(FloatProcedure procedure) |
|
ImmutableFloatList |
toImmutable() |
Returns an immutable copy of this list.
|
MutableFloatList |
toReversed() |
|
MutableFloatList |
with(float element) |
|
MutableFloatList |
withAll(FloatIterable elements) |
|
MutableFloatList |
without(float element) |
|
MutableFloatList |
withoutAll(FloatIterable elements) |
|
default <T> MutableList<FloatObjectPair<T>> |
zip(java.lang.Iterable<T> list) |
Returns a
MutableList formed from this MutableFloatList and a ListIterable by
combining corresponding elements in pairs. |
default MutableList<FloatFloatPair> |
zipFloat(FloatIterable iterable) |
Returns a
MutableList formed from this MutableFloatList and another FloatList by
combining corresponding elements in pairs. |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListbinarySearch, dotProduct, equals, get, hashCode, lastIndexOfadd, addAll, addAll, clear, floatIterator, remove, removeAll, removeAll, removeIf, retainAll, retainAllcollectWithIndex, forEachWithIndex, getFirst, indexOfappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringasReversed, getLast, injectIntoWithIndexvoid addAtIndex(int index,
float element)
boolean addAllAtIndex(int index,
float... source)
boolean addAllAtIndex(int index,
FloatIterable source)
float removeAtIndex(int index)
float set(int index,
float element)
MutableFloatList select(FloatPredicate predicate)
FloatIterableselect in interface FloatIterableselect in interface FloatListselect in interface MutableFloatCollectionselect in interface OrderedFloatIterableselect in interface ReversibleFloatIterableMutableFloatList reject(FloatPredicate predicate)
FloatIterablereject in interface FloatIterablereject in interface FloatListreject in interface MutableFloatCollectionreject in interface OrderedFloatIterablereject in interface ReversibleFloatIterableMutableFloatList with(float element)
with in interface MutableFloatCollectionMutableFloatList without(float element)
without in interface MutableFloatCollectionMutableFloatList withAll(FloatIterable elements)
withAll in interface MutableFloatCollectionMutableFloatList withoutAll(FloatIterable elements)
withoutAll in interface MutableFloatCollectiondefault MutableFloatList tap(FloatProcedure procedure)
tap in interface FloatIterabletap in interface FloatListtap in interface MutableFloatCollection<V> MutableList<V> collect(FloatToObjectFunction<? extends V> function)
FloatIterablecollect in interface FloatIterablecollect in interface FloatListcollect in interface MutableFloatCollectioncollect in interface OrderedFloatIterablecollect in interface ReversibleFloatIterabledefault <V> MutableList<V> collectWithIndex(FloatIntToObjectFunction<? extends V> function)
collectWithIndex in interface FloatListcollectWithIndex in interface OrderedFloatIterablecollectWithIndex in interface ReversibleFloatIterableMutableFloatList reverseThis()
MutableFloatList toReversed()
toReversed in interface FloatListtoReversed in interface ReversibleFloatIterableMutableFloatList distinct()
distinct in interface FloatListdistinct in interface ReversibleFloatIterableMutableFloatList sortThis()
MutableFloatList asUnmodifiable()
asUnmodifiable in interface MutableFloatCollectionMutableFloatList asSynchronized()
asSynchronized in interface MutableFloatCollectionImmutableFloatList toImmutable()
toImmutable in interface FloatListtoImmutable in interface MutableFloatCollectionMutableFloatList subList(int fromIndex, int toIndex)
default MutableList<FloatFloatPair> zipFloat(FloatIterable iterable)
MutableList formed from this MutableFloatList and another FloatList by
combining corresponding elements in pairs. If one of the two FloatLists is longer than the other, its
remaining elements are ignored.default <T> MutableList<FloatObjectPair<T>> zip(java.lang.Iterable<T> list)
MutableList formed from this MutableFloatList and a ListIterable by
combining corresponding elements in pairs. If one of the two Lists is longer than the other, its
remaining elements are ignored.Copyright © 2004–2018. All rights reserved.