Package | Description |
---|---|
com.gs.collections.api |
This package contains interfaces for GS Collections API.
|
com.gs.collections.api.bag |
This package contains interfaces for Bag API.
|
com.gs.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
com.gs.collections.api.collection | |
com.gs.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List . |
com.gs.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
com.gs.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.
|
com.gs.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
com.gs.collections.api.ordered | |
com.gs.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set . |
com.gs.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
com.gs.collections.api.stack |
This package contains interfaces for stack API.
|
com.gs.collections.impl |
This package contains implementations for GS Collections API.
|
com.gs.collections.impl.bag.immutable |
This package contains implementations of the
ImmutableBag interface. |
com.gs.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
com.gs.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag . |
com.gs.collections.impl.block.comparator.primitive |
This package contains implementations of the
SerializableComparator interface to compare primitive double, int and long. |
com.gs.collections.impl.block.factory |
This package contains factory implementations for
Function , Predicate , SerializableComparator and Procedure . |
com.gs.collections.impl.block.function.primitive |
This package contains implementations of primitive functions.
|
com.gs.collections.impl.block.procedure.primitive |
This package contains implementations of primitive procedures.
|
com.gs.collections.impl.collection | |
com.gs.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
com.gs.collections.impl.lazy |
This package contains implementations of the
LazyIterable interface. |
com.gs.collections.impl.lazy.parallel | |
com.gs.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
com.gs.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
com.gs.collections.impl.map |
This package contains implementations of the
MapIterable interface. |
com.gs.collections.impl.map.immutable |
This package contains implementations of the
ImmutableMap interface. |
com.gs.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
com.gs.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
com.gs.collections.impl.map.sorted.immutable |
This package contains implementations of the
MutableSortedMap interface. |
com.gs.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
com.gs.collections.impl.set.immutable |
This package package contains the implementations of
ImmutableSet . |
com.gs.collections.impl.set.mutable |
This package package contains implementations of
MutableSet . |
com.gs.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet . |
com.gs.collections.impl.set.strategy.mutable |
This package contains implementations of sets with user defined
HashingStrategy s. |
com.gs.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
com.gs.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
com.gs.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
Modifier and Type | Method and Description |
---|---|
IntIterable |
RichIterable.collectInt(IntFunction<? super T> intFunction)
Returns a new primitive
int iterable with the results of applying the specified function on each element
of the source collection. |
LazyIntIterable |
LazyIterable.collectInt(IntFunction<? super T> intFunction)
Returns a lazy IntIterable which will transform the underlying iterable data to int values based on the intFunction.
|
<R extends MutableIntCollection> |
RichIterable.collectInt(IntFunction<? super T> intFunction,
R target)
Same as
RichIterable.collectInt(IntFunction) , except that the results are gathered into the specified target
collection. |
long |
ParallelIterable.sumOfInt(IntFunction<? super T> function) |
long |
RichIterable.sumOfInt(IntFunction<? super T> function)
Returns the final long result of evaluating function for each element of the iterable and adding the results
together.
|
Modifier and Type | Method and Description |
---|---|
MutableIntBag |
MutableBag.collectInt(IntFunction<? super T> intFunction) |
IntBag |
UnsortedBag.collectInt(IntFunction<? super T> intFunction) |
ImmutableIntBag |
ImmutableBag.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
IntList |
SortedBag.collectInt(IntFunction<? super T> intFunction) |
ImmutableIntList |
ImmutableSortedBag.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
MutableSortedBag.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
MutableIntCollection |
MutableCollection.collectInt(IntFunction<? super T> intFunction) |
ImmutableIntCollection |
ImmutableCollection.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableIntList |
ImmutableList.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
MutableList.collectInt(IntFunction<? super T> intFunction) |
IntList |
ListIterable.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableIntCollection |
ImmutableMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
MutableMap.collectInt(IntFunction<? super V> intFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableIntCollection |
ImmutableShortObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
MutablePrimitiveObjectMap.collectInt(IntFunction<? super V> intFunction) |
ImmutableIntCollection |
ImmutableCharObjectMap.collectInt(IntFunction<? super V> intFunction) |
ImmutableIntCollection |
ImmutableByteObjectMap.collectInt(IntFunction<? super V> intFunction) |
ImmutableIntCollection |
ImmutableIntObjectMap.collectInt(IntFunction<? super V> intFunction) |
ImmutableIntCollection |
ImmutableFloatObjectMap.collectInt(IntFunction<? super V> intFunction) |
ImmutableIntCollection |
ImmutableDoubleObjectMap.collectInt(IntFunction<? super V> intFunction) |
ImmutableIntCollection |
ImmutableLongObjectMap.collectInt(IntFunction<? super V> intFunction) |
<P> int |
MutableByteIntMap.getIfAbsentPutWith(byte key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableCharIntMap.getIfAbsentPutWith(char key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableDoubleIntMap.getIfAbsentPutWith(double key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableFloatIntMap.getIfAbsentPutWith(float key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableIntIntMap.getIfAbsentPutWith(int key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableObjectIntMap.getIfAbsentPutWith(K key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableLongIntMap.getIfAbsentPutWith(long key,
IntFunction<? super P> function,
P parameter) |
<P> int |
MutableShortIntMap.getIfAbsentPutWith(short key,
IntFunction<? super P> function,
P parameter) |
int |
MutableObjectIntMap.getIfAbsentPutWithKey(K key,
IntFunction<? super K> function) |
Modifier and Type | Method and Description |
---|---|
MutableIntList |
MutableSortedMap.collectInt(IntFunction<? super V> intFunction) |
Modifier and Type | Method and Description |
---|---|
ReversibleIntIterable |
ReversibleIterable.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableIntSet |
ImmutableSet.collectInt(IntFunction<? super T> intFunction) |
IntSet |
UnsortedSetIterable.collectInt(IntFunction<? super T> intFunction) |
MutableIntSet |
MutableSet.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableIntList |
ImmutableSortedSet.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
MutableSortedSet.collectInt(IntFunction<? super T> intFunction) |
IntList |
SortedSetIterable.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableIntStack |
ImmutableStack.collectInt(IntFunction<? super T> intFunction) |
IntStack |
StackIterable.collectInt(IntFunction<? super T> intFunction) |
MutableIntStack |
MutableStack.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Field and Description |
---|---|
static IntFunction<Counter> |
Counter.TO_COUNT |
Modifier and Type | Method and Description |
---|---|
IntIterable |
SynchronizedRichIterable.collectInt(IntFunction<? super T> intFunction) |
IntIterable |
UnmodifiableRichIterable.collectInt(IntFunction<? super T> intFunction) |
<R extends MutableIntCollection> |
AbstractRichIterable.collectInt(IntFunction<? super T> intFunction,
R target) |
<R extends MutableIntCollection> |
SynchronizedRichIterable.collectInt(IntFunction<? super T> intFunction,
R target) |
<R extends MutableIntCollection> |
UnmodifiableRichIterable.collectInt(IntFunction<? super T> intFunction,
R target) |
long |
AbstractRichIterable.sumOfInt(IntFunction<? super T> function) |
long |
SynchronizedRichIterable.sumOfInt(IntFunction<? super T> function) |
long |
UnmodifiableRichIterable.sumOfInt(IntFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableIntBag |
AbstractImmutableBag.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
MutableIntBag |
UnmodifiableBag.collectInt(IntFunction<? super T> intFunction) |
MutableIntBag |
HashBag.collectInt(IntFunction<? super T> intFunction) |
MutableIntBag |
SynchronizedBag.collectInt(IntFunction<? super T> function) |
MutableIntBag |
MultiReaderHashBag.collectInt(IntFunction<? super T> intFunction) |
long |
HashBag.sumOfInt(IntFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
MutableIntList |
TreeBag.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
UnmodifiableSortedBag.collectInt(IntFunction<? super T> intFunction) |
long |
TreeBag.sumOfInt(IntFunction<? super T> function) |
Constructor and Description |
---|
IntFunctionComparator(IntFunction<T> function) |
Modifier and Type | Class and Description |
---|---|
static class |
Functions.IntFunctionChain<T1,T2> |
static class |
Functions.SizeFunction |
Modifier and Type | Method and Description |
---|---|
static IntFunction<String> |
StringFunctions.toPrimitiveInt() |
static IntFunction<Integer> |
PrimitiveFunctions.unboxIntegerToInt() |
static IntFunction<Number> |
PrimitiveFunctions.unboxNumberToInt() |
Modifier and Type | Method and Description |
---|---|
static <T> SerializableComparator<T> |
Comparators.byIntFunction(IntFunction<T> function) |
static <T1,T2> Functions.IntFunctionChain<T1,T2> |
Functions.chainInt(Function<T1,T2> function1,
IntFunction<? super T2> function2) |
Functions.IntFunctionChain<T1,T3> |
Functions.FunctionChain.chainInt(IntFunction<? super T3> function) |
static <T> HashingStrategy<T> |
HashingStrategies.fromIntFunction(IntFunction<? super T> function) |
static <T> SerializableComparator<T> |
Functions.toIntComparator(IntFunction<T> function) |
Modifier and Type | Class and Description |
---|---|
class |
IntegerFunctionImpl<T>
IntegerFunctionImpl is an abstract implementation of the IntFunction interface which can be subclassed
explicitly or as an anonymous inner class, without needing to override the valueOf method defined in
Function.
|
Constructor and Description |
---|
CollectIntProcedure(IntFunction<? super T> intFunction,
MutableIntCollection targetCollection) |
Modifier and Type | Method and Description |
---|---|
<R extends MutableIntCollection> |
AbstractMutableBag.collectInt(IntFunction<? super T> intFunction,
R target) |
Modifier and Type | Method and Description |
---|---|
MutableIntCollection |
AbstractCollectionAdapter.collectInt(IntFunction<? super T> intFunction) |
MutableIntCollection |
AbstractUnmodifiableMutableCollection.collectInt(IntFunction<? super T> intFunction) |
MutableIntCollection |
AbstractSynchronizedMutableCollection.collectInt(IntFunction<? super T> intFunction) |
<R extends MutableIntCollection> |
AbstractMultiReaderMutableCollection.collectInt(IntFunction<? super T> intFunction,
R target) |
<R extends MutableIntCollection> |
AbstractCollectionAdapter.collectInt(IntFunction<? super T> intFunction,
R target) |
<R extends MutableIntCollection> |
AbstractUnmodifiableMutableCollection.collectInt(IntFunction<? super T> intFunction,
R target) |
<R extends MutableIntCollection> |
AbstractSynchronizedMutableCollection.collectInt(IntFunction<? super T> intFunction,
R target) |
long |
AbstractMultiReaderMutableCollection.sumOfInt(IntFunction<? super T> function) |
long |
AbstractCollectionAdapter.sumOfInt(IntFunction<? super T> function) |
long |
AbstractUnmodifiableMutableCollection.sumOfInt(IntFunction<? super T> function) |
long |
AbstractSynchronizedMutableCollection.sumOfInt(IntFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
LazyIntIterable |
AbstractLazyIterable.collectInt(IntFunction<? super T> intFunction) |
<R extends MutableIntCollection> |
AbstractLazyIterable.collectInt(IntFunction<? super T> intFunction,
R target) |
long |
AbstractLazyIterable.sumOfInt(IntFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
long |
AbstractParallelIterable.sumOfInt(IntFunction<? super T> function) |
Constructor and Description |
---|
CollectIntIterable(LazyIterable<T> adapted,
IntFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
MutableIntList |
RandomAccessListAdapter.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
UnmodifiableMutableList.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
ArrayListAdapter.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
AbstractMutableList.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
FastList.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
AbstractListAdapter.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
MultiReaderFastList.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
SynchronizedMutableList.collectInt(IntFunction<? super T> intFunction) |
<R extends MutableIntCollection> |
FastList.collectInt(IntFunction<? super T> intFunction,
R target) |
long |
AbstractMutableList.sumOfInt(IntFunction<? super T> function) |
long |
FastList.sumOfInt(IntFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
<R extends MutableIntCollection> |
AbstractMapIterable.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
SynchronizedMapIterable.collectInt(IntFunction<? super V> intFunction,
R target) |
long |
AbstractMapIterable.sumOfInt(IntFunction<? super V> function) |
long |
SynchronizedMapIterable.sumOfInt(IntFunction<? super V> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableIntCollection |
AbstractImmutableMap.collectInt(IntFunction<? super V> intFunction) |
Modifier and Type | Method and Description |
---|---|
MutableIntCollection |
SynchronizedMutableMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntList |
AbstractMutableMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
UnmodifiableMutableMap.collectInt(IntFunction<? super V> intFunction) |
<R extends MutableIntCollection> |
UnmodifiableMutableMap.collectInt(IntFunction<? super V> intFunction,
R target) |
long |
UnmodifiableMutableMap.sumOfInt(IntFunction<? super V> function) |
Modifier and Type | Method and Description |
---|---|
MutableIntCollection |
DoubleObjectHashMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
SynchronizedByteObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
LongObjectHashMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
UnmodifiableLongObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
UnmodifiableShortObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
ShortObjectHashMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
UnmodifiableIntObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
SynchronizedFloatObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
IntObjectHashMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
UnmodifiableDoubleObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
SynchronizedShortObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
CharObjectHashMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
UnmodifiableCharObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
SynchronizedLongObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
UnmodifiableByteObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
UnmodifiableFloatObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
SynchronizedDoubleObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
SynchronizedIntObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
ByteObjectHashMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
SynchronizedCharObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntCollection |
FloatObjectHashMap.collectInt(IntFunction<? super V> intFunction) |
<R extends MutableIntCollection> |
DoubleObjectHashMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
SynchronizedByteObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
LongObjectHashMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
UnmodifiableLongObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
UnmodifiableShortObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
ShortObjectHashMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
UnmodifiableIntObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
SynchronizedFloatObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
IntObjectHashMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
UnmodifiableDoubleObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
SynchronizedShortObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
CharObjectHashMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
UnmodifiableCharObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
SynchronizedLongObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
UnmodifiableByteObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
UnmodifiableFloatObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
SynchronizedDoubleObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
SynchronizedIntObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
ByteObjectHashMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
SynchronizedCharObjectMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<R extends MutableIntCollection> |
FloatObjectHashMap.collectInt(IntFunction<? super V> intFunction,
R target) |
<P> int |
UnmodifiableByteIntMap.getIfAbsentPutWith(byte key,
IntFunction<? super P> function,
P parameter) |
<P> int |
SynchronizedByteIntMap.getIfAbsentPutWith(byte key,
IntFunction<? super P> function,
P parameter) |
<P> int |
ByteIntHashMap.getIfAbsentPutWith(byte key,
IntFunction<? super P> function,
P parameter) |
<P> int |
SynchronizedCharIntMap.getIfAbsentPutWith(char key,
IntFunction<? super P> function,
P parameter) |
<P> int |
UnmodifiableCharIntMap.getIfAbsentPutWith(char key,
IntFunction<? super P> function,
P parameter) |
<P> int |
CharIntHashMap.getIfAbsentPutWith(char key,
IntFunction<? super P> function,
P parameter) |
<P> int |
UnmodifiableDoubleIntMap.getIfAbsentPutWith(double key,
IntFunction<? super P> function,
P parameter) |
<P> int |
DoubleIntHashMap.getIfAbsentPutWith(double key,
IntFunction<? super P> function,
P parameter) |
<P> int |
SynchronizedDoubleIntMap.getIfAbsentPutWith(double key,
IntFunction<? super P> function,
P parameter) |
<P> int |
FloatIntHashMap.getIfAbsentPutWith(float key,
IntFunction<? super P> function,
P parameter) |
<P> int |
UnmodifiableFloatIntMap.getIfAbsentPutWith(float key,
IntFunction<? super P> function,
P parameter) |
<P> int |
SynchronizedFloatIntMap.getIfAbsentPutWith(float key,
IntFunction<? super P> function,
P parameter) |
<P> int |
UnmodifiableIntIntMap.getIfAbsentPutWith(int key,
IntFunction<? super P> function,
P parameter) |
<P> int |
IntIntHashMap.getIfAbsentPutWith(int key,
IntFunction<? super P> function,
P parameter) |
<P> int |
SynchronizedIntIntMap.getIfAbsentPutWith(int key,
IntFunction<? super P> function,
P parameter) |
<P> int |
UnmodifiableObjectIntMap.getIfAbsentPutWith(K key,
IntFunction<? super P> function,
P parameter) |
<P> int |
SynchronizedObjectIntMap.getIfAbsentPutWith(K key,
IntFunction<? super P> function,
P parameter) |
<P> int |
ObjectIntHashMap.getIfAbsentPutWith(K key,
IntFunction<? super P> function,
P parameter) |
<P> int |
LongIntHashMap.getIfAbsentPutWith(long key,
IntFunction<? super P> function,
P parameter) |
<P> int |
UnmodifiableLongIntMap.getIfAbsentPutWith(long key,
IntFunction<? super P> function,
P parameter) |
<P> int |
SynchronizedLongIntMap.getIfAbsentPutWith(long key,
IntFunction<? super P> function,
P parameter) |
<P> int |
SynchronizedShortIntMap.getIfAbsentPutWith(short key,
IntFunction<? super P> function,
P parameter) |
<P> int |
ShortIntHashMap.getIfAbsentPutWith(short key,
IntFunction<? super P> function,
P parameter) |
<P> int |
UnmodifiableShortIntMap.getIfAbsentPutWith(short key,
IntFunction<? super P> function,
P parameter) |
int |
UnmodifiableObjectIntMap.getIfAbsentPutWithKey(K key,
IntFunction<? super K> function) |
int |
SynchronizedObjectIntMap.getIfAbsentPutWithKey(K key,
IntFunction<? super K> function) |
int |
ObjectIntHashMap.getIfAbsentPutWithKey(K key,
IntFunction<? super K> function) |
long |
DoubleObjectHashMap.sumOfInt(IntFunction<? super V> function) |
long |
SynchronizedByteObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
LongObjectHashMap.sumOfInt(IntFunction<? super V> function) |
long |
UnmodifiableLongObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
UnmodifiableShortObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
ShortObjectHashMap.sumOfInt(IntFunction<? super V> function) |
long |
UnmodifiableIntObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
SynchronizedFloatObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
IntObjectHashMap.sumOfInt(IntFunction<? super V> function) |
long |
UnmodifiableDoubleObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
SynchronizedShortObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
CharObjectHashMap.sumOfInt(IntFunction<? super V> function) |
long |
UnmodifiableCharObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
SynchronizedLongObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
UnmodifiableByteObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
UnmodifiableFloatObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
SynchronizedDoubleObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
SynchronizedIntObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
ByteObjectHashMap.sumOfInt(IntFunction<? super V> function) |
long |
SynchronizedCharObjectMap.sumOfInt(IntFunction<? super V> function) |
long |
FloatObjectHashMap.sumOfInt(IntFunction<? super V> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableIntList |
AbstractImmutableSortedMap.collectInt(IntFunction<? super V> intFunction) |
Modifier and Type | Method and Description |
---|---|
MutableIntList |
AbstractMutableSortedMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntList |
SynchronizedSortedMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntList |
UnmodifiableTreeMap.collectInt(IntFunction<? super V> intFunction) |
<R extends MutableIntCollection> |
UnmodifiableTreeMap.collectInt(IntFunction<? super V> intFunction,
R target) |
long |
UnmodifiableTreeMap.sumOfInt(IntFunction<? super V> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableIntSet |
AbstractImmutableSet.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
MutableIntSet |
UnifiedSet.collectInt(IntFunction<? super T> intFunction) |
MutableIntSet |
SetAdapter.collectInt(IntFunction<? super T> intFunction) |
MutableIntSet |
UnmodifiableMutableSet.collectInt(IntFunction<? super T> intFunction) |
MutableIntSet |
MultiReaderUnifiedSet.collectInt(IntFunction<? super T> intFunction) |
MutableIntSet |
SynchronizedMutableSet.collectInt(IntFunction<? super T> intFunction) |
MutableIntSet |
AbstractMutableSet.collectInt(IntFunction<? super T> intFunction) |
<R extends MutableIntCollection> |
UnifiedSet.collectInt(IntFunction<? super T> intFunction,
R target) |
long |
UnifiedSet.sumOfInt(IntFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
MutableIntList |
TreeSortedSet.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
UnmodifiableSortedSet.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
SortedSetAdapter.collectInt(IntFunction<? super T> intFunction) |
MutableIntList |
SynchronizedSortedSet.collectInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
MutableIntSet |
UnifiedSetWithHashingStrategy.collectInt(IntFunction<? super K> intFunction) |
<R extends MutableIntCollection> |
UnifiedSetWithHashingStrategy.collectInt(IntFunction<? super K> intFunction,
R target) |
long |
UnifiedSetWithHashingStrategy.sumOfInt(IntFunction<? super K> function) |
Modifier and Type | Method and Description |
---|---|
MutableIntStack |
SynchronizedStack.collectInt(IntFunction<? super T> intFunction) |
MutableIntStack |
ArrayStack.collectInt(IntFunction<? super T> intFunction) |
MutableIntStack |
UnmodifiableStack.collectInt(IntFunction<? super T> intFunction) |
<R extends MutableIntCollection> |
SynchronizedStack.collectInt(IntFunction<? super T> intFunction,
R target) |
<R extends MutableIntCollection> |
ArrayStack.collectInt(IntFunction<? super T> intFunction,
R target) |
<R extends MutableIntCollection> |
UnmodifiableStack.collectInt(IntFunction<? super T> intFunction,
R target) |
long |
SynchronizedStack.sumOfInt(IntFunction<? super T> intFunction) |
long |
ArrayStack.sumOfInt(IntFunction<? super T> intFunction) |
long |
UnmodifiableStack.sumOfInt(IntFunction<? super T> intFunction) |
Modifier and Type | Method and Description |
---|---|
static <T> MutableIntList |
ArrayListIterate.collectInt(ArrayList<T> list,
IntFunction<? super T> intFunction) |
static <T,R extends MutableIntCollection> |
ArrayListIterate.collectInt(ArrayList<T> list,
IntFunction<? super T> intFunction,
R target) |
static <T> MutableIntCollection |
Iterate.collectInt(Iterable<T> iterable,
IntFunction<? super T> intFunction)
Returns a new collection with the results of applying the specified intFunction for each element of the iterable.
|
static <T,R extends MutableIntCollection> |
Iterate.collectInt(Iterable<T> iterable,
IntFunction<? super T> intFunction,
R target)
Same as
Iterate.collectInt(Iterable, IntFunction) , except that the results are gathered into the specified target
collection. |
static <T> MutableIntList |
ListIterate.collectInt(List<T> list,
IntFunction<? super T> intFunction) |
static <T,R extends MutableIntCollection> |
ListIterate.collectInt(List<T> list,
IntFunction<? super T> intFunction,
R target) |
static <K,V> MutableIntCollection |
MapIterate.collectInt(Map<K,V> map,
IntFunction<? super V> intFunction) |
static <K,V,R extends MutableIntCollection> |
MapIterate.collectInt(Map<K,V> map,
IntFunction<? super V> intFunction,
R target) |
static <T> MutableIntList |
ArrayIterate.collectInt(T[] objectArray,
IntFunction<? super T> intFunction) |
static <T,R extends MutableIntCollection> |
ArrayIterate.collectInt(T[] objectArray,
IntFunction<? super T> intFunction,
R target) |
static <T> long |
Iterate.sumOfInt(Iterable<T> iterable,
IntFunction<? super T> function) |
static <T> long |
ListIterate.sumOfInt(List<T> list,
IntFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
static <T> MutableIntCollection |
IterableIterate.collectInt(Iterable<T> iterable,
IntFunction<? super T> intFunction) |
static <T,R extends MutableIntCollection> |
IterableIterate.collectInt(Iterable<T> iterable,
IntFunction<? super T> intFunction,
R target) |
static <T> MutableIntCollection |
IteratorIterate.collectInt(Iterator<T> iterator,
IntFunction<? super T> intFunction) |
static <T,R extends MutableIntCollection> |
IteratorIterate.collectInt(Iterator<T> iterator,
IntFunction<? super T> intFunction,
R target) |
static <T> MutableIntList |
RandomAccessListIterate.collectInt(List<T> list,
IntFunction<? super T> intFunction) |
static <T,R extends MutableIntCollection> |
RandomAccessListIterate.collectInt(List<T> list,
IntFunction<? super T> intFunction,
R target) |
static <T> long |
IterableIterate.sumOfInt(Iterable<T> iterable,
IntFunction<? super T> function) |
static <T> long |
IteratorIterate.sumOfInt(Iterator<T> iterator,
IntFunction<? super T> function) |
static <T> long |
RandomAccessListIterate.sumOfInt(List<T> list,
IntFunction<? super T> function) |
Copyright © 2004–2018. All rights reserved.