| Package | Description |
|---|---|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
| Modifier and Type | Method and Description |
|---|---|
ListIterable<IntIntPair> |
IntBag.bottomOccurrences(int count)
Returns the
count least frequently occurring items. |
MutableList<IntIntPair> |
MutableIntBag.bottomOccurrences(int count)
Returns the
count least frequently occurring items. |
ImmutableList<IntIntPair> |
ImmutableIntBag.bottomOccurrences(int count)
Returns the
count least frequently occurring items. |
ListIterable<IntIntPair> |
IntBag.topOccurrences(int count)
Returns the
count most frequently occurring items. |
MutableList<IntIntPair> |
MutableIntBag.topOccurrences(int count)
Returns the
count most frequently occurring items. |
ImmutableList<IntIntPair> |
ImmutableIntBag.topOccurrences(int count)
Returns the
count most frequently occurring items. |
| Modifier and Type | Method and Description |
|---|---|
default ListIterable<IntIntPair> |
IntList.zipInt(IntIterable iterable)
Returns a
ListIterable formed from this IntList and another IntList by
combining corresponding elements in pairs. |
default MutableList<IntIntPair> |
MutableIntList.zipInt(IntIterable iterable)
Returns a
MutableList formed from this MutableIntList and another IntList by
combining corresponding elements in pairs. |
default ImmutableList<IntIntPair> |
ImmutableIntList.zipInt(IntIterable iterable)
Returns an
ImmutableList formed from this ImmutableIntList and another IntList by
combining corresponding elements in pairs. |
| Modifier and Type | Method and Description |
|---|---|
RichIterable<IntIntPair> |
IntIntMap.keyValuesView()
Returns a view of the key/value pairs in this map.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
MutableIntIntMap.putPair(IntIntPair keyValuePair)
This method allows MutableIntIntMap the ability to add an element in the form of IntIntPair.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableIntIntMap |
MutableIntIntMap.withAllKeyValues(Iterable<IntIntPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.
|
Copyright © 2004–2020. All rights reserved.