public interface LongBag extends LongIterable
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
collect(LongToObjectFunction<? extends V> function) |
boolean |
equals(Object o)
Follows the same general contract as
Bag.equals(Object). |
void |
forEachWithOccurrences(LongIntProcedure 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(long item)
The occurrences of a distinct item in the bag.
|
LongBag |
reject(LongPredicate predicate) |
LongBag |
select(LongPredicate predicate) |
int |
sizeDistinct()
The size of the Bag when counting only distinct elements.
|
ImmutableLongBag |
toImmutable()
Returns an immutable copy of this bag.
|
allSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, longIterator, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringint sizeDistinct()
int occurrencesOf(long item)
void forEachWithOccurrences(LongIntProcedure procedure)
LongBag select(LongPredicate predicate)
select in interface LongIterableLongBag reject(LongPredicate predicate)
reject in interface LongIterable<V> Bag<V> collect(LongToObjectFunction<? extends V> function)
collect in interface LongIterableboolean equals(Object o)
Bag.equals(Object).int hashCode()
Bag.hashCode().ImmutableLongBag toImmutable()
Copyright © 2004–2017. All rights reserved.