| 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.
|
| Modifier and Type | Method and Description |
|---|---|
default <T> ListIterable<LongObjectPair<T>> |
LongList.zip(Iterable<T> iterable)
Returns a
ListIterable formed from this LongList and a ListIterable by
combining corresponding elements in pairs. |
default <T> MutableList<LongObjectPair<T>> |
MutableLongList.zip(Iterable<T> list)
Returns a
MutableList formed from this MutableLongList and a ListIterable by
combining corresponding elements in pairs. |
default <T> ImmutableList<LongObjectPair<T>> |
ImmutableLongList.zip(Iterable<T> iterable)
Returns an
ImmutableList formed from this ImmutableLongList and a ListIterable by
combining corresponding elements in pairs. |
| Modifier and Type | Method and Description |
|---|---|
RichIterable<LongObjectPair<V>> |
LongObjectMap.keyValuesView()
Returns a view of the key/value pairs in this map.
|
| Modifier and Type | Method and Description |
|---|---|
default V |
MutableLongObjectMap.putPair(LongObjectPair<V> keyValuePair)
This method allows MutableLongObjectMap the ability to add an element in the form of
LongObjectPair<V>. |
| Modifier and Type | Method and Description |
|---|---|
default MutableLongObjectMap<V> |
MutableLongObjectMap.withAllKeyValues(Iterable<LongObjectPair<V>> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.
|
Copyright © 2004–2020. All rights reserved.