| Package | Description |
|---|---|
| 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.
|
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
default ListIterable<LongLongPair> |
LongList.zipLong(LongIterable iterable)
Returns a
ListIterable formed from this LongList and another LongList by
combining corresponding elements in pairs. |
default MutableList<LongLongPair> |
MutableLongList.zipLong(LongIterable iterable)
Returns a
MutableList formed from this MutableLongList and another LongList by
combining corresponding elements in pairs. |
default ImmutableList<LongLongPair> |
ImmutableLongList.zipLong(LongIterable iterable)
Returns an
ImmutableList formed from this ImmutableLongList and another LongList by
combining corresponding elements in pairs. |
| Modifier and Type | Method and Description |
|---|---|
RichIterable<LongLongPair> |
LongLongMap.keyValuesView()
Returns a view of the key/value pairs in this map.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
MutableLongLongMap.putPair(LongLongPair keyValuePair)
This method allows MutableLongLongMap the ability to add an element in the form of LongLongPair.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableLongLongMap |
MutableLongLongMap.withAllKeyValues(Iterable<LongLongPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.
|
| Modifier and Type | Method and Description |
|---|---|
LazyIterable<LongLongPair> |
LongSet.cartesianProduct(LongSet set)
Returns the set whose members are all possible ordered pairs (a, b) where a is a member of
this and b is a
member of set. |
Copyright © 2004–2022. All rights reserved.