public interface DoubleBag extends DoubleIterable
Modifier and Type | Method and Description |
---|---|
<V> Bag<V> |
collect(DoubleToObjectFunction<? extends V> function) |
boolean |
equals(Object o)
Follows the same general contract as
Bag.equals(Object) . |
void |
forEachWithOccurrences(DoubleIntProcedure procedure)
For each distinct item, with the number of occurrences, execute the specified procedure.
|
int |
hashCode()
Follows the same general contract as
Bag.hashCode() . |
int |
occurrencesOf(double item)
The occurrences of a distinct item in the bag.
|
DoubleBag |
reject(DoublePredicate predicate) |
DoubleBag |
select(DoublePredicate predicate) |
int |
sizeDistinct()
The size of the Bag when counting only distinct elements.
|
ImmutableDoubleBag |
toImmutable()
Returns an immutable copy of this bag.
|
allSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, doubleIterator, 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
int sizeDistinct()
int occurrencesOf(double item)
void forEachWithOccurrences(DoubleIntProcedure procedure)
DoubleBag select(DoublePredicate predicate)
select
in interface DoubleIterable
DoubleBag reject(DoublePredicate predicate)
reject
in interface DoubleIterable
<V> Bag<V> collect(DoubleToObjectFunction<? extends V> function)
collect
in interface DoubleIterable
boolean equals(Object o)
Bag.equals(Object)
.int hashCode()
Bag.hashCode()
.ImmutableDoubleBag toImmutable()
Copyright © 2004–2016. All rights reserved.