public interface FloatBag extends FloatIterable
Modifier and Type | Method and Description |
---|---|
<V> Bag<V> |
collect(FloatToObjectFunction<? extends V> function) |
boolean |
equals(Object o)
Follows the same general contract as
Bag.equals(Object) . |
void |
forEachWithOccurrences(FloatIntProcedure 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(float item)
The occurrences of a distinct item in the bag.
|
FloatBag |
reject(FloatPredicate predicate) |
FloatBag |
select(FloatPredicate predicate) |
int |
sizeDistinct()
The size of the Bag when counting only distinct elements.
|
ImmutableFloatBag |
toImmutable()
Returns an immutable copy of this bag.
|
allSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, floatIterator, 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(float item)
void forEachWithOccurrences(FloatIntProcedure procedure)
FloatBag select(FloatPredicate predicate)
select
in interface FloatIterable
FloatBag reject(FloatPredicate predicate)
reject
in interface FloatIterable
<V> Bag<V> collect(FloatToObjectFunction<? extends V> function)
collect
in interface FloatIterable
boolean equals(Object o)
Bag.equals(Object)
.int hashCode()
Bag.hashCode()
.ImmutableFloatBag toImmutable()
Copyright © 2004–2016. All rights reserved.