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