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 |
---|---|
LazyLongIterable |
LazyIterable.collectLong(LongFunction<? super T> longFunction)
Returns a lazy LongIterable which will transform the underlying iterable data to long values based on the longFunction.
|
LongIterable |
RichIterable.collectLong(LongFunction<? super T> longFunction)
Returns a new primitive
long iterable with the results of applying the specified function on each element
of the source collection. |
<R extends MutableLongCollection> |
RichIterable.collectLong(LongFunction<? super T> longFunction,
R target)
Same as
RichIterable.collectLong(LongFunction) , except that the results are gathered into the specified target
collection. |
long |
ParallelIterable.sumOfLong(LongFunction<? super T> function) |
long |
RichIterable.sumOfLong(LongFunction<? 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 |
---|---|
ImmutableLongBag |
ImmutableBag.collectLong(LongFunction<? super T> longFunction) |
LongBag |
UnsortedBag.collectLong(LongFunction<? super T> longFunction) |
MutableLongBag |
MutableBag.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableLongList |
ImmutableSortedBag.collectLong(LongFunction<? super T> longFunction) |
LongList |
SortedBag.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
MutableSortedBag.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongCollection |
MutableCollection.collectLong(LongFunction<? super T> longFunction) |
ImmutableLongCollection |
ImmutableCollection.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableLongList |
ImmutableList.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
MutableList.collectLong(LongFunction<? super T> longFunction) |
LongList |
ListIterable.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableLongCollection |
ImmutableMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
MutableMap.collectLong(LongFunction<? super V> longFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableLongCollection |
ImmutableShortObjectMap.collectLong(LongFunction<? super V> longFunction) |
ImmutableLongCollection |
ImmutableCharObjectMap.collectLong(LongFunction<? super V> longFunction) |
ImmutableLongCollection |
ImmutableDoubleObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
MutablePrimitiveObjectMap.collectLong(LongFunction<? super V> longFunction) |
ImmutableLongCollection |
ImmutableFloatObjectMap.collectLong(LongFunction<? super V> longFunction) |
ImmutableLongCollection |
ImmutableIntObjectMap.collectLong(LongFunction<? super V> longFunction) |
ImmutableLongCollection |
ImmutableByteObjectMap.collectLong(LongFunction<? super V> longFunction) |
ImmutableLongCollection |
ImmutableLongObjectMap.collectLong(LongFunction<? super V> longFunction) |
<P> long |
MutableByteLongMap.getIfAbsentPutWith(byte key,
LongFunction<? super P> function,
P parameter) |
<P> long |
MutableCharLongMap.getIfAbsentPutWith(char key,
LongFunction<? super P> function,
P parameter) |
<P> long |
MutableDoubleLongMap.getIfAbsentPutWith(double key,
LongFunction<? super P> function,
P parameter) |
<P> long |
MutableFloatLongMap.getIfAbsentPutWith(float key,
LongFunction<? super P> function,
P parameter) |
<P> long |
MutableIntLongMap.getIfAbsentPutWith(int key,
LongFunction<? super P> function,
P parameter) |
<P> long |
MutableObjectLongMap.getIfAbsentPutWith(K key,
LongFunction<? super P> function,
P parameter) |
<P> long |
MutableLongLongMap.getIfAbsentPutWith(long key,
LongFunction<? super P> function,
P parameter) |
<P> long |
MutableShortLongMap.getIfAbsentPutWith(short key,
LongFunction<? super P> function,
P parameter) |
long |
MutableObjectLongMap.getIfAbsentPutWithKey(K key,
LongFunction<? super K> function) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
MutableSortedMap.collectLong(LongFunction<? super V> longFunction) |
Modifier and Type | Method and Description |
---|---|
ReversibleLongIterable |
ReversibleIterable.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
ImmutableLongSet |
ImmutableSet.collectLong(LongFunction<? super T> longFunction) |
LongSet |
UnsortedSetIterable.collectLong(LongFunction<? super T> longFunction) |
MutableLongSet |
MutableSet.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
LongList |
SortedSetIterable.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
MutableSortedSet.collectLong(LongFunction<? super T> longFunction) |
ImmutableLongList |
ImmutableSortedSet.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongStack |
MutableStack.collectLong(LongFunction<? super T> longFunction) |
ImmutableLongStack |
ImmutableStack.collectLong(LongFunction<? super T> longFunction) |
LongStack |
StackIterable.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
LongIterable |
SynchronizedRichIterable.collectLong(LongFunction<? super T> longFunction) |
LongIterable |
UnmodifiableRichIterable.collectLong(LongFunction<? super T> longFunction) |
<R extends MutableLongCollection> |
AbstractRichIterable.collectLong(LongFunction<? super T> longFunction,
R target) |
<R extends MutableLongCollection> |
SynchronizedRichIterable.collectLong(LongFunction<? super T> longFunction,
R target) |
<R extends MutableLongCollection> |
UnmodifiableRichIterable.collectLong(LongFunction<? super T> longFunction,
R target) |
long |
AbstractRichIterable.sumOfLong(LongFunction<? super T> function) |
long |
SynchronizedRichIterable.sumOfLong(LongFunction<? super T> function) |
long |
UnmodifiableRichIterable.sumOfLong(LongFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableLongBag |
AbstractImmutableBag.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongBag |
MultiReaderHashBag.collectLong(LongFunction<? super T> longFunction) |
MutableLongBag |
HashBag.collectLong(LongFunction<? super T> longFunction) |
MutableLongBag |
SynchronizedBag.collectLong(LongFunction<? super T> longFunction) |
MutableLongBag |
UnmodifiableBag.collectLong(LongFunction<? super T> longFunction) |
long |
HashBag.sumOfLong(LongFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
UnmodifiableSortedBag.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
TreeBag.collectLong(LongFunction<? super T> longFunction) |
long |
TreeBag.sumOfLong(LongFunction<? super T> function) |
Constructor and Description |
---|
LongFunctionComparator(LongFunction<T> function) |
Modifier and Type | Class and Description |
---|---|
static class |
Functions.LongFunctionChain<T1,T2> |
Modifier and Type | Method and Description |
---|---|
static LongFunction<String> |
StringFunctions.toPrimitiveLong() |
static LongFunction<Integer> |
PrimitiveFunctions.unboxIntegerToLong() |
static LongFunction<Number> |
PrimitiveFunctions.unboxNumberToLong() |
Modifier and Type | Method and Description |
---|---|
static <T> SerializableComparator<T> |
Comparators.byLongFunction(LongFunction<T> function) |
static <T1,T2> Functions.LongFunctionChain<T1,T2> |
Functions.chainLong(Function<T1,T2> function1,
LongFunction<? super T2> function2) |
Functions.LongFunctionChain<T1,T3> |
Functions.FunctionChain.chainLong(LongFunction<? super T3> function) |
static <T> HashingStrategy<T> |
HashingStrategies.fromLongFunction(LongFunction<? super T> function) |
static <T> SerializableComparator<T> |
Functions.toLongComparator(LongFunction<T> function) |
Modifier and Type | Class and Description |
---|---|
class |
LongFunctionImpl<T>
LongFunctionImpl is an abstract implementation of the LongFunction 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 |
---|
CollectLongProcedure(LongFunction<? super T> longFunction,
MutableLongCollection targetCollection) |
Modifier and Type | Method and Description |
---|---|
<R extends MutableLongCollection> |
AbstractMutableBag.collectLong(LongFunction<? super T> longFunction,
R target) |
Modifier and Type | Method and Description |
---|---|
MutableLongCollection |
AbstractSynchronizedMutableCollection.collectLong(LongFunction<? super T> longFunction) |
MutableLongCollection |
AbstractCollectionAdapter.collectLong(LongFunction<? super T> longFunction) |
MutableLongCollection |
AbstractUnmodifiableMutableCollection.collectLong(LongFunction<? super T> longFunction) |
<R extends MutableLongCollection> |
AbstractSynchronizedMutableCollection.collectLong(LongFunction<? super T> longFunction,
R target) |
<R extends MutableLongCollection> |
AbstractMultiReaderMutableCollection.collectLong(LongFunction<? super T> longFunction,
R target) |
<R extends MutableLongCollection> |
AbstractCollectionAdapter.collectLong(LongFunction<? super T> longFunction,
R target) |
<R extends MutableLongCollection> |
AbstractUnmodifiableMutableCollection.collectLong(LongFunction<? super T> longFunction,
R target) |
long |
AbstractSynchronizedMutableCollection.sumOfLong(LongFunction<? super T> function) |
long |
AbstractMultiReaderMutableCollection.sumOfLong(LongFunction<? super T> function) |
long |
AbstractCollectionAdapter.sumOfLong(LongFunction<? super T> function) |
long |
AbstractUnmodifiableMutableCollection.sumOfLong(LongFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
LazyLongIterable |
AbstractLazyIterable.collectLong(LongFunction<? super T> longFunction) |
<R extends MutableLongCollection> |
AbstractLazyIterable.collectLong(LongFunction<? super T> longFunction,
R target) |
long |
AbstractLazyIterable.sumOfLong(LongFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
long |
AbstractParallelIterable.sumOfLong(LongFunction<? super T> function) |
Constructor and Description |
---|
CollectLongIterable(LazyIterable<T> adapted,
LongFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
SynchronizedMutableList.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
RandomAccessListAdapter.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
AbstractMutableList.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
MultiReaderFastList.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
AbstractListAdapter.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
UnmodifiableMutableList.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
ArrayListAdapter.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
FastList.collectLong(LongFunction<? super T> longFunction) |
<R extends MutableLongCollection> |
FastList.collectLong(LongFunction<? super T> longFunction,
R target) |
long |
AbstractMutableList.sumOfLong(LongFunction<? super T> function) |
long |
FastList.sumOfLong(LongFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
<R extends MutableLongCollection> |
SynchronizedMapIterable.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
AbstractMapIterable.collectLong(LongFunction<? super V> longFunction,
R target) |
long |
SynchronizedMapIterable.sumOfLong(LongFunction<? super V> function) |
long |
AbstractMapIterable.sumOfLong(LongFunction<? super V> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableLongCollection |
AbstractImmutableMap.collectLong(LongFunction<? super V> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongCollection |
UnmodifiableMutableMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongList |
AbstractMutableMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
SynchronizedMutableMap.collectLong(LongFunction<? super V> longFunction) |
<R extends MutableLongCollection> |
UnmodifiableMutableMap.collectLong(LongFunction<? super V> longFunction,
R target) |
long |
UnmodifiableMutableMap.sumOfLong(LongFunction<? super V> function) |
Modifier and Type | Method and Description |
---|---|
MutableLongCollection |
UnmodifiableByteObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
UnmodifiableCharObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
UnmodifiableShortObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
SynchronizedCharObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
UnmodifiableLongObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
UnmodifiableDoubleObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
LongObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
FloatObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
UnmodifiableFloatObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
IntObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
SynchronizedFloatObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
SynchronizedDoubleObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
UnmodifiableIntObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
ShortObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
SynchronizedLongObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
DoubleObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
SynchronizedShortObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
CharObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
SynchronizedByteObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
SynchronizedIntObjectMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongCollection |
ByteObjectHashMap.collectLong(LongFunction<? super V> longFunction) |
<R extends MutableLongCollection> |
UnmodifiableByteObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
UnmodifiableCharObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
UnmodifiableShortObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
SynchronizedCharObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
UnmodifiableLongObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
UnmodifiableDoubleObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
LongObjectHashMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
FloatObjectHashMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
UnmodifiableFloatObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
IntObjectHashMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
SynchronizedFloatObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
SynchronizedDoubleObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
UnmodifiableIntObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
ShortObjectHashMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
SynchronizedLongObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
DoubleObjectHashMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
SynchronizedShortObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
CharObjectHashMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
SynchronizedByteObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
SynchronizedIntObjectMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<R extends MutableLongCollection> |
ByteObjectHashMap.collectLong(LongFunction<? super V> longFunction,
R target) |
<P> long |
ByteLongHashMap.getIfAbsentPutWith(byte key,
LongFunction<? super P> function,
P parameter) |
<P> long |
SynchronizedByteLongMap.getIfAbsentPutWith(byte key,
LongFunction<? super P> function,
P parameter) |
<P> long |
UnmodifiableByteLongMap.getIfAbsentPutWith(byte key,
LongFunction<? super P> function,
P parameter) |
<P> long |
CharLongHashMap.getIfAbsentPutWith(char key,
LongFunction<? super P> function,
P parameter) |
<P> long |
SynchronizedCharLongMap.getIfAbsentPutWith(char key,
LongFunction<? super P> function,
P parameter) |
<P> long |
UnmodifiableCharLongMap.getIfAbsentPutWith(char key,
LongFunction<? super P> function,
P parameter) |
<P> long |
UnmodifiableDoubleLongMap.getIfAbsentPutWith(double key,
LongFunction<? super P> function,
P parameter) |
<P> long |
DoubleLongHashMap.getIfAbsentPutWith(double key,
LongFunction<? super P> function,
P parameter) |
<P> long |
SynchronizedDoubleLongMap.getIfAbsentPutWith(double key,
LongFunction<? super P> function,
P parameter) |
<P> long |
SynchronizedFloatLongMap.getIfAbsentPutWith(float key,
LongFunction<? super P> function,
P parameter) |
<P> long |
FloatLongHashMap.getIfAbsentPutWith(float key,
LongFunction<? super P> function,
P parameter) |
<P> long |
UnmodifiableFloatLongMap.getIfAbsentPutWith(float key,
LongFunction<? super P> function,
P parameter) |
<P> long |
UnmodifiableIntLongMap.getIfAbsentPutWith(int key,
LongFunction<? super P> function,
P parameter) |
<P> long |
SynchronizedIntLongMap.getIfAbsentPutWith(int key,
LongFunction<? super P> function,
P parameter) |
<P> long |
IntLongHashMap.getIfAbsentPutWith(int key,
LongFunction<? super P> function,
P parameter) |
<P> long |
UnmodifiableObjectLongMap.getIfAbsentPutWith(K key,
LongFunction<? super P> function,
P parameter) |
<P> long |
SynchronizedObjectLongMap.getIfAbsentPutWith(K key,
LongFunction<? super P> function,
P parameter) |
<P> long |
ObjectLongHashMap.getIfAbsentPutWith(K key,
LongFunction<? super P> function,
P parameter) |
<P> long |
LongLongHashMap.getIfAbsentPutWith(long key,
LongFunction<? super P> function,
P parameter) |
<P> long |
UnmodifiableLongLongMap.getIfAbsentPutWith(long key,
LongFunction<? super P> function,
P parameter) |
<P> long |
SynchronizedLongLongMap.getIfAbsentPutWith(long key,
LongFunction<? super P> function,
P parameter) |
<P> long |
UnmodifiableShortLongMap.getIfAbsentPutWith(short key,
LongFunction<? super P> function,
P parameter) |
<P> long |
SynchronizedShortLongMap.getIfAbsentPutWith(short key,
LongFunction<? super P> function,
P parameter) |
<P> long |
ShortLongHashMap.getIfAbsentPutWith(short key,
LongFunction<? super P> function,
P parameter) |
long |
UnmodifiableObjectLongMap.getIfAbsentPutWithKey(K key,
LongFunction<? super K> function) |
long |
SynchronizedObjectLongMap.getIfAbsentPutWithKey(K key,
LongFunction<? super K> function) |
long |
ObjectLongHashMap.getIfAbsentPutWithKey(K key,
LongFunction<? super K> function) |
long |
UnmodifiableByteObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
UnmodifiableCharObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
UnmodifiableShortObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
SynchronizedCharObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
UnmodifiableLongObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
UnmodifiableDoubleObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
LongObjectHashMap.sumOfLong(LongFunction<? super V> function) |
long |
FloatObjectHashMap.sumOfLong(LongFunction<? super V> function) |
long |
UnmodifiableFloatObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
IntObjectHashMap.sumOfLong(LongFunction<? super V> function) |
long |
SynchronizedFloatObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
SynchronizedDoubleObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
UnmodifiableIntObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
ShortObjectHashMap.sumOfLong(LongFunction<? super V> function) |
long |
SynchronizedLongObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
DoubleObjectHashMap.sumOfLong(LongFunction<? super V> function) |
long |
SynchronizedShortObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
CharObjectHashMap.sumOfLong(LongFunction<? super V> function) |
long |
SynchronizedByteObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
SynchronizedIntObjectMap.sumOfLong(LongFunction<? super V> function) |
long |
ByteObjectHashMap.sumOfLong(LongFunction<? super V> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableLongList |
AbstractImmutableSortedMap.collectLong(LongFunction<? super V> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
SynchronizedSortedMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongList |
AbstractMutableSortedMap.collectLong(LongFunction<? super V> longFunction) |
MutableLongList |
UnmodifiableTreeMap.collectLong(LongFunction<? super V> longFunction) |
<R extends MutableLongCollection> |
UnmodifiableTreeMap.collectLong(LongFunction<? super V> longFunction,
R target) |
long |
UnmodifiableTreeMap.sumOfLong(LongFunction<? super V> function) |
Modifier and Type | Method and Description |
---|---|
ImmutableLongSet |
AbstractImmutableSet.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongSet |
MultiReaderUnifiedSet.collectLong(LongFunction<? super T> longFunction) |
MutableLongSet |
UnmodifiableMutableSet.collectLong(LongFunction<? super T> longFunction) |
MutableLongSet |
SetAdapter.collectLong(LongFunction<? super T> longFunction) |
MutableLongSet |
SynchronizedMutableSet.collectLong(LongFunction<? super T> longFunction) |
MutableLongSet |
AbstractMutableSet.collectLong(LongFunction<? super T> longFunction) |
MutableLongSet |
UnifiedSet.collectLong(LongFunction<? super T> longFunction) |
<R extends MutableLongCollection> |
UnifiedSet.collectLong(LongFunction<? super T> longFunction,
R target) |
long |
UnifiedSet.sumOfLong(LongFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
MutableLongList |
SynchronizedSortedSet.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
SortedSetAdapter.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
UnmodifiableSortedSet.collectLong(LongFunction<? super T> longFunction) |
MutableLongList |
TreeSortedSet.collectLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
MutableLongSet |
UnifiedSetWithHashingStrategy.collectLong(LongFunction<? super K> longFunction) |
<R extends MutableLongCollection> |
UnifiedSetWithHashingStrategy.collectLong(LongFunction<? super K> longFunction,
R target) |
long |
UnifiedSetWithHashingStrategy.sumOfLong(LongFunction<? super K> function) |
Modifier and Type | Method and Description |
---|---|
MutableLongStack |
ArrayStack.collectLong(LongFunction<? super T> longFunction) |
MutableLongStack |
SynchronizedStack.collectLong(LongFunction<? super T> longFunction) |
MutableLongStack |
UnmodifiableStack.collectLong(LongFunction<? super T> longFunction) |
<R extends MutableLongCollection> |
ArrayStack.collectLong(LongFunction<? super T> longFunction,
R target) |
<R extends MutableLongCollection> |
SynchronizedStack.collectLong(LongFunction<? super T> longFunction,
R target) |
<R extends MutableLongCollection> |
UnmodifiableStack.collectLong(LongFunction<? super T> longFunction,
R target) |
long |
ArrayStack.sumOfLong(LongFunction<? super T> longFunction) |
long |
SynchronizedStack.sumOfLong(LongFunction<? super T> longFunction) |
long |
UnmodifiableStack.sumOfLong(LongFunction<? super T> longFunction) |
Modifier and Type | Method and Description |
---|---|
static <T> MutableLongList |
ArrayListIterate.collectLong(ArrayList<T> list,
LongFunction<? super T> longFunction) |
static <T,R extends MutableLongCollection> |
ArrayListIterate.collectLong(ArrayList<T> list,
LongFunction<? super T> longFunction,
R target) |
static <T> MutableLongCollection |
Iterate.collectLong(Iterable<T> iterable,
LongFunction<? super T> longFunction)
Returns a new collection with the results of applying the specified longFunction for each element of the iterable.
|
static <T,R extends MutableLongCollection> |
Iterate.collectLong(Iterable<T> iterable,
LongFunction<? super T> longFunction,
R target)
Same as
Iterate.collectLong(Iterable, LongFunction) , except that the results are gathered into the specified target
collection. |
static <T> MutableLongList |
ListIterate.collectLong(List<T> list,
LongFunction<? super T> longFunction) |
static <T,R extends MutableLongCollection> |
ListIterate.collectLong(List<T> list,
LongFunction<? super T> longFunction,
R target) |
static <K,V> MutableLongCollection |
MapIterate.collectLong(Map<K,V> map,
LongFunction<? super V> longFunction) |
static <K,V,R extends MutableLongCollection> |
MapIterate.collectLong(Map<K,V> map,
LongFunction<? super V> longFunction,
R target) |
static <T> MutableLongList |
ArrayIterate.collectLong(T[] objectArray,
LongFunction<? super T> longFunction) |
static <T,R extends MutableLongCollection> |
ArrayIterate.collectLong(T[] objectArray,
LongFunction<? super T> longFunction,
R target) |
static <T> long |
Iterate.sumOfLong(Iterable<T> iterable,
LongFunction<? super T> function) |
static <T> long |
ListIterate.sumOfLong(List<T> list,
LongFunction<? super T> function) |
Modifier and Type | Method and Description |
---|---|
static <T> MutableLongCollection |
IterableIterate.collectLong(Iterable<T> iterable,
LongFunction<? super T> longFunction) |
static <T,R extends MutableLongCollection> |
IterableIterate.collectLong(Iterable<T> iterable,
LongFunction<? super T> longFunction,
R target) |
static <T> MutableLongCollection |
IteratorIterate.collectLong(Iterator<T> iterator,
LongFunction<? super T> longFunction) |
static <T,R extends MutableLongCollection> |
IteratorIterate.collectLong(Iterator<T> iterator,
LongFunction<? super T> longFunction,
R target) |
static <T> MutableLongList |
RandomAccessListIterate.collectLong(List<T> list,
LongFunction<? super T> longFunction) |
static <T,R extends MutableLongCollection> |
RandomAccessListIterate.collectLong(List<T> list,
LongFunction<? super T> longFunction,
R target) |
static <T> long |
IterableIterate.sumOfLong(Iterable<T> iterable,
LongFunction<? super T> function) |
static <T> long |
IteratorIterate.sumOfLong(Iterator<T> iterator,
LongFunction<? super T> function) |
static <T> long |
RandomAccessListIterate.sumOfLong(List<T> list,
LongFunction<? super T> function) |
Copyright © 2004–2017. All rights reserved.