public interface MutableFloatCollection extends FloatIterable
Modifier and Type | Method and Description |
---|---|
boolean |
add(float element) |
boolean |
addAll(float... source) |
boolean |
addAll(FloatIterable source) |
MutableFloatCollection |
asSynchronized() |
MutableFloatCollection |
asUnmodifiable() |
void |
clear() |
<V> MutableCollection<V> |
collect(FloatToObjectFunction<? extends V> function) |
MutableFloatIterator |
floatIterator() |
MutableFloatCollection |
reject(FloatPredicate predicate) |
boolean |
remove(float value) |
boolean |
removeAll(float... source) |
boolean |
removeAll(FloatIterable source) |
boolean |
retainAll(float... source) |
boolean |
retainAll(FloatIterable elements) |
MutableFloatCollection |
select(FloatPredicate predicate) |
ImmutableFloatCollection |
toImmutable() |
MutableFloatCollection |
with(float element) |
MutableFloatCollection |
withAll(FloatIterable elements) |
MutableFloatCollection |
without(float element) |
MutableFloatCollection |
withoutAll(FloatIterable elements) |
allSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
MutableFloatIterator floatIterator()
floatIterator
in interface FloatIterable
boolean add(float element)
boolean addAll(float... source)
boolean addAll(FloatIterable source)
boolean remove(float value)
boolean removeAll(FloatIterable source)
boolean removeAll(float... source)
boolean retainAll(FloatIterable elements)
Collection.retainAll(Collection)
boolean retainAll(float... source)
Collection.retainAll(Collection)
void clear()
MutableFloatCollection select(FloatPredicate predicate)
select
in interface FloatIterable
MutableFloatCollection reject(FloatPredicate predicate)
reject
in interface FloatIterable
<V> MutableCollection<V> collect(FloatToObjectFunction<? extends V> function)
collect
in interface FloatIterable
MutableFloatCollection with(float element)
MutableFloatCollection without(float element)
MutableFloatCollection withAll(FloatIterable elements)
MutableFloatCollection withoutAll(FloatIterable elements)
MutableFloatCollection asUnmodifiable()
MutableFloatCollection asSynchronized()
ImmutableFloatCollection toImmutable()
Copyright © 2004–2016. All rights reserved.