Package | Description |
---|---|
org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
org.eclipse.collections.api.ordered.primitive | |
org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
org.eclipse.collections.impl.factory.primitive |
This package contains static utilities for creating immutable primitive collection factories.
|
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
Modifier and Type | Method | Description |
---|---|---|
default <V> ImmutableList<V> |
ImmutableIntList.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new ImmutableList using results obtained by applying the specified function to each element
and its corresponding index.
|
default <V> ListIterable<V> |
IntList.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new ListIterable using results obtained by applying the specified function to each element
and its corresponding index.
|
default <V> MutableList<V> |
MutableIntList.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new MutableList using results obtained by applying the specified function to each element
and its corresponding index.
|
Modifier and Type | Method | Description |
---|---|---|
default <V> OrderedIterable<V> |
OrderedIntIterable.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new OrderedIterable using results obtained by applying the specified function to each element
and its corresponding index.
|
default <V,R extends java.util.Collection<V>> |
OrderedIntIterable.collectWithIndex(IntIntToObjectFunction<? extends V> function,
R target) |
Adds elements to the target Collection using results obtained by applying the specified function to each element
and its corresponding index.
|
default <V> ReversibleIterable<V> |
ReversibleIntIterable.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new ReversibleIterable using results obtained by applying the specified function to each element
and its corresponding index.
|
Modifier and Type | Method | Description |
---|---|---|
default <V> ImmutableStack<V> |
ImmutableIntStack.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new ImmutableStack using results obtained by applying the specified function to each element
and its corresponding index.
|
default <V> StackIterable<V> |
IntStack.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new StackIterable using results obtained by applying the specified function to each element
and its corresponding index.
|
default <V> MutableStack<V> |
MutableIntStack.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new MutableStack using results obtained by applying the specified function to each element
and its corresponding index.
|
Modifier and Type | Method | Description |
---|---|---|
static <A,B,C> LazyIterable<C> |
IntSets.cartesianProduct(IntSet set1,
IntSet set2,
IntIntToObjectFunction<C> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableList<V> |
SynchronizedIntList.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new MutableList using results obtained by applying the specified function to each element
and its corresponding index.
|
<V,R extends java.util.Collection<V>> |
SynchronizedIntList.collectWithIndex(IntIntToObjectFunction<? extends V> function,
R target) |
Adds elements to the target Collection using results obtained by applying the specified function to each element
and its corresponding index.
|
<V> MutableList<V> |
UnmodifiableIntList.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new MutableList using results obtained by applying the specified function to each element
and its corresponding index.
|
<V,R extends java.util.Collection<V>> |
UnmodifiableIntList.collectWithIndex(IntIntToObjectFunction<? extends V> function,
R target) |
Adds elements to the target Collection using results obtained by applying the specified function to each element
and its corresponding index.
|
Modifier and Type | Method | Description |
---|---|---|
<V> MutableStack<V> |
SynchronizedIntStack.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new MutableStack using results obtained by applying the specified function to each element
and its corresponding index.
|
<V,R extends java.util.Collection<V>> |
SynchronizedIntStack.collectWithIndex(IntIntToObjectFunction<? extends V> function,
R target) |
Adds elements to the target Collection using results obtained by applying the specified function to each element
and its corresponding index.
|
<V> MutableStack<V> |
UnmodifiableIntStack.collectWithIndex(IntIntToObjectFunction<? extends V> function) |
Returns a new MutableStack using results obtained by applying the specified function to each element
and its corresponding index.
|
<V,R extends java.util.Collection<V>> |
UnmodifiableIntStack.collectWithIndex(IntIntToObjectFunction<? extends V> function,
R target) |
Adds elements to the target Collection using results obtained by applying the specified function to each element
and its corresponding index.
|
Copyright © 2004–2020. All rights reserved.