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