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