public interface IntBag extends IntIterable
| Modifier and Type | Method and Description |
|---|---|
ListIterable<IntIntPair> |
bottomOccurrences(int count)
Returns the
count least frequently occurring items. |
<V> Bag<V> |
collect(IntToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
boolean |
equals(Object o)
Follows the same general contract as
Bag.equals(Object). |
void |
forEachWithOccurrences(IntIntProcedure 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(int item)
The occurrences of a distinct item in the bag.
|
IntBag |
reject(IntPredicate predicate)
Returns a new IntIterable with all of the elements in the IntIterable that
return false for the specified predicate.
|
IntBag |
select(IntPredicate predicate)
Returns a new IntIterable with all of the elements in the IntIterable that
return true for the specified predicate.
|
IntBag |
selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
int |
sizeDistinct()
The size of the Bag when counting only distinct elements.
|
default IntBag |
tap(IntProcedure procedure) |
ImmutableIntBag |
toImmutable()
Returns an immutable copy of this bag.
|
ListIterable<IntIntPair> |
topOccurrences(int count)
Returns the
count most frequently occurring items. |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, intIterator, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringint sizeDistinct()
default IntBag tap(IntProcedure procedure)
tap in interface IntIterableIntBag selectByOccurrences(IntPredicate predicate)
ListIterable<IntIntPair> topOccurrences(int count)
count most frequently occurring items.
In the event of a tie, all of the items with the number of occurrences that match the occurrences of the last
item will be returned.ListIterable<IntIntPair> bottomOccurrences(int count)
count least frequently occurring items.
In the event of a tie, all of the items with the number of occurrences that match the occurrences of the last
item will be returned.int occurrencesOf(int item)
void forEachWithOccurrences(IntIntProcedure procedure)
IntBag select(IntPredicate predicate)
IntIterableselect in interface IntIterableIntBag reject(IntPredicate predicate)
IntIterablereject in interface IntIterable<V> Bag<V> collect(IntToObjectFunction<? extends V> function)
IntIterablecollect in interface IntIterableboolean equals(Object o)
Bag.equals(Object).int hashCode()
Bag.hashCode().ImmutableIntBag toImmutable()
Copyright © 2004–2017. All rights reserved.