| 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<CharCharPair> |
CharList.zipChar(CharIterable iterable)
Returns a
ListIterable formed from this CharList and another CharList by
combining corresponding elements in pairs. |
default MutableList<CharCharPair> |
MutableCharList.zipChar(CharIterable iterable)
Returns a
MutableList formed from this MutableCharList and another CharList by
combining corresponding elements in pairs. |
default ImmutableList<CharCharPair> |
ImmutableCharList.zipChar(CharIterable iterable)
Returns an
ImmutableList formed from this ImmutableCharList and another CharList by
combining corresponding elements in pairs. |
| Modifier and Type | Method and Description |
|---|---|
RichIterable<CharCharPair> |
CharCharMap.keyValuesView()
Returns a view of the key/value pairs in this map.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
MutableCharCharMap.putPair(CharCharPair keyValuePair)
This method allows MutableCharCharMap the ability to add an element in the form of CharCharPair.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableCharCharMap |
MutableCharCharMap.withAllKeyValues(Iterable<CharCharPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.
|
| Modifier and Type | Method and Description |
|---|---|
LazyIterable<CharCharPair> |
CharSet.cartesianProduct(CharSet 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.