Uses of Interface
org.eclipse.collections.api.block.function.primitive.LongFunction
Packages that use LongFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag interface.This package contains implementations of the
MutableBag interface.This package contains implementations of
MutableSortedBag.This package contains implementations of the
MutableBiMap interface.This package contains implementations of the
SerializableComparator interface to compare primitive double, int and long.This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure.This package contains implementations of primitive functions.
This package contains implementations of
Procedure and Procedure2.This package contains implementations of primitive procedures.
This package contains implementations of the
ImmutableCollection interface.This package contains implementations of the
MutableCollection interface.This package contains implementations of the
LazyIterable interface.This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the
FixedSizeList interface.This package contains implementations of the
ImmutableList interface.This package contains implementations of the
MutableList interface.This package contains implementations of the
MapIterable interface.This package contains implementations of the
ImmutableMap interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the
MutableSortedMap interface.This package contains classes which is used for parallel iteration through the containers.
This package contains the implementations of
ImmutableSet.This package contains implementations of
MutableSet.This package contains implementations of
ImmutableSortedSet.This package contains implementations of
MutableSortedSet.This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of LongFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type LongFunctionModifier and TypeMethodDescriptionLazyIterable.collectLong(LongFunction<? super T> longFunction) Returns a lazy LongIterable which will transform the underlying iterable data to long values based on the longFunction.RichIterable.collectLong(LongFunction<? super T> longFunction) Returns a new primitivelongiterable with the results of applying the specified function on each element of the source collection.default <R extends MutableLongCollection>
RRichIterable.collectLong(LongFunction<? super T> longFunction, R target) Same asRichIterable.collectLong(LongFunction), except that the results are gathered into the specifiedtargetcollection.<V> ObjectLongMap<V> RichIterable.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) Groups and sums the values using the two specified functions.default LongSummaryStatisticsRichIterable.summarizeLong(LongFunction<? super T> function) Returns the result of summarizing the value returned from applying the LongFunction to each element of the iterable.longParallelIterable.sumOfLong(LongFunction<? super T> function) Returns the final long result of evaluating function for each element of the iterable in parallel and adding the results together.longRichIterable.sumOfLong(LongFunction<? super T> function) Returns the final long result of evaluating function for each element of the iterable and adding the results together. -
Uses of LongFunction in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableBag.collectLong(LongFunction<? super T> longFunction) default MutableLongBagMutableBag.collectLong(LongFunction<? super T> longFunction) UnsortedBag.collectLong(LongFunction<? super T> longFunction) default LongSummaryStatisticsBag.summarizeLong(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableSortedBag.collectLong(LongFunction<? super T> longFunction) MutableSortedBag.collectLong(LongFunction<? super T> longFunction) SortedBag.collectLong(LongFunction<? super T> longFunction) -
Uses of LongFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableCollection.collectLong(LongFunction<? super T> longFunction) default MutableLongCollectionMutableCollection.collectLong(LongFunction<? super T> longFunction) Returns a new primitivelongiterable with the results of applying the specified function on each element of the source collection.<V> ImmutableObjectLongMap<V> ImmutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> MutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableByteLongMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharLongMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleLongMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatLongMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntLongMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableIntLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongBooleanMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongByteMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongCharMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongDoubleMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongFloatMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableLongFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongIntMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongLongMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableLongLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V> ImmutableLongObjectMap <V> ImmutableLongObjectMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anImmutableLongObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongShortMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableLongShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K> ImmutableObjectLongMap <K> ImmutableObjectLongMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableObjectLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortLongMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableShortLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteLongMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharLongMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleLongMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatLongMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntLongMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableIntLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongBooleanMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongByteMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongCharMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongDoubleMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongFloatMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableLongFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongIntMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongLongMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableLongLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V> MutableLongObjectMap <V> MutableLongObjectMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anMutableLongObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongShortMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableLongShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K> MutableObjectLongMap <K> MutableObjectLongMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableObjectLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortLongMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableShortLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction. -
Uses of LongFunction in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableList.collectLong(LongFunction<? super T> longFunction) ListIterable.collectLong(LongFunction<? super T> longFunction) default MutableLongListMutableList.collectLong(LongFunction<? super T> longFunction) MultiReaderList.sortThisByLong(LongFunction<? super T> function) MutableList.sortThisByLong(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableMap.collectLong(LongFunction<? super V> longFunction) ImmutableOrderedMap.collectLong(LongFunction<? super V> longFunction) MutableMap.collectLong(LongFunction<? super V> longFunction) MutableOrderedMap.collectLong(LongFunction<? super V> longFunction) OrderedMap.collectLong(LongFunction<? super V> longFunction) UnsortedMapIterable.collectLong(LongFunction<? super V> longFunction) <VV> ImmutableObjectLongMap<VV> ImmutableOrderedMap.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> MutableMapIterable.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutablePrimitiveObjectMap.collectLong(LongFunction<? super V> longFunction) MutablePrimitiveObjectMap.collectLong(LongFunction<? super V> longFunction) PrimitiveObjectMap.collectLong(LongFunction<? super V> longFunction) <P> longMutableByteLongMap.getIfAbsentPutWith(byte key, LongFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> longMutableCharLongMap.getIfAbsentPutWith(char key, LongFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> longMutableDoubleLongMap.getIfAbsentPutWith(double key, LongFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> longMutableFloatLongMap.getIfAbsentPutWith(float key, LongFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> longMutableIntLongMap.getIfAbsentPutWith(int key, LongFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> longMutableLongLongMap.getIfAbsentPutWith(long key, LongFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> longMutableObjectLongMap.getIfAbsentPutWith(K key, LongFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> longMutableShortLongMap.getIfAbsentPutWith(short key, LongFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.longMutableObjectLongMap.getIfAbsentPutWithKey(K key, LongFunction<? super K> function) Retrieves the value associated with the key if one exists; if it does not, associates the result of invoking the value function with the key.<VV> ImmutableObjectLongMap<VV> ImmutablePrimitiveObjectMap.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) <VV> MutableObjectLongMap<VV> MutablePrimitiveObjectMap.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableSortedMap.collectLong(LongFunction<? super V> longFunction) MutableSortedMap.collectLong(LongFunction<? super V> longFunction) SortedMapIterable.collectLong(LongFunction<? super V> longFunction) -
Uses of LongFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type LongFunctionModifier and TypeMethodDescriptionOrderedIterable.collectLong(LongFunction<? super T> longFunction) ReversibleIterable.collectLong(LongFunction<? super T> longFunction) -
Uses of LongFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableSet.collectLong(LongFunction<? super T> longFunction) default MutableLongSetMutableSet.collectLong(LongFunction<? super T> longFunction) UnsortedSetIterable.collectLong(LongFunction<? super T> longFunction) -
Uses of LongFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableSortedSet.collectLong(LongFunction<? super T> longFunction) MutableSortedSet.collectLong(LongFunction<? super T> longFunction) SortedSetIterable.collectLong(LongFunction<? super T> longFunction) -
Uses of LongFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableStack.collectLong(LongFunction<? super T> longFunction) MutableStack.collectLong(LongFunction<? super T> longFunction) StackIterable.collectLong(LongFunction<? super T> longFunction) <V> ImmutableObjectLongMap<V> ImmutableStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> MutableStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type LongFunctionModifier and TypeMethodDescriptionUnmodifiableRichIterable.collectLong(LongFunction<? super T> longFunction) <R extends MutableLongCollection>
RUnmodifiableRichIterable.collectLong(LongFunction<? super T> longFunction, R target) <V> ObjectLongMap<V> UnmodifiableRichIterable.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) longAbstractRichIterable.sumOfLong(LongFunction<? super T> function) longUnmodifiableRichIterable.sumOfLong(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type LongFunctionModifier and TypeMethodDescription<R extends MutableLongCollection>
RAbstractBag.collectLong(LongFunction<? super T> longFunction, R target) longAbstractBag.sumOfLong(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractImmutableBag.collectLong(LongFunction<? super T> longFunction) ImmutableEmptyBag.collectLong(LongFunction<? super T> longFunction) <V> ImmutableObjectLongMap<V> AbstractImmutableBagIterable.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type LongFunctionModifier and TypeMethodDescriptionMultiReaderHashBag.collectLong(LongFunction<? super T> longFunction) MultiReaderHashBag.UntouchableMutableBag.collectLong(LongFunction<? super T> longFunction) SynchronizedBag.collectLong(LongFunction<? super T> longFunction) UnmodifiableBag.collectLong(LongFunction<? super T> longFunction) <V> MutableObjectLongMap<V> AbstractMutableBagIterable.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> MultiReaderHashBag.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> UnmodifiableBag.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedBag.collectLong(LongFunction<? super T> longFunction) -
Uses of LongFunction in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectLong(LongFunction<? super T> longFunction) SynchronizedSortedBag.collectLong(LongFunction<? super T> longFunction) UnmodifiableSortedBag.collectLong(LongFunction<? super T> longFunction) <V> MutableObjectLongMap<V> UnmodifiableSortedBag.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type LongFunctionModifier and TypeMethodDescription<R extends MutableLongCollection>
RAbstractBiMap.collectLong(LongFunction<? super V> longFunction, R target) longAbstractBiMap.sumOfLong(LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractImmutableBiMap.collectLong(LongFunction<? super V> longFunction) <V1> ImmutableObjectLongMap<V1> AbstractImmutableBiMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractMutableBiMap.collectLong(LongFunction<? super V> longFunction) UnmodifiableBiMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableBiMap.collectLong(LongFunction<? super V> longFunction, R target) <V1> MutableObjectLongMap<V1> AbstractMutableBiMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> UnmodifiableBiMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) longUnmodifiableBiMap.sumOfLong(LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.block.comparator.primitive
Fields in org.eclipse.collections.impl.block.comparator.primitive declared as LongFunctionConstructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type LongFunction -
Uses of LongFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement LongFunctionModifier and TypeClassDescriptionstatic final classFunctions.LongFunctionChain<T1,T2> private static classprivate static classprivate static classprivate static final classFields in org.eclipse.collections.impl.block.factory declared as LongFunctionModifier and TypeFieldDescriptionprivate final LongFunction<? super T> HashingStrategies.LongFunctionHashingStrategy.functionprivate final LongFunction<? super T2> Functions.LongFunctionChain.function2private static final LongFunction<String> StringFunctions.TO_PRIMITIVE_LONGMethods in org.eclipse.collections.impl.block.factory that return LongFunctionModifier and TypeMethodDescriptionstatic LongFunction<String> StringFunctions.toPrimitiveLong()static LongFunction<Integer> PrimitiveFunctions.unboxIntegerToLong()static LongFunction<Number> PrimitiveFunctions.unboxNumberToLong()Methods in org.eclipse.collections.impl.block.factory with parameters of type LongFunctionModifier and TypeMethodDescriptionstatic <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.FunctionChain.chainLong(LongFunction<? super T3> function) static <T> HashingStrategy<T> HashingStrategies.fromLongFunction(LongFunction<? super T> function) static <T,V> Function2 <MutableObjectLongMap<V>, T, MutableObjectLongMap<V>> PrimitiveFunctions.sumByLongFunction(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) static <T> Procedure2<LongSummaryStatistics, T> Procedures2.summarizeLong(LongFunction<? super T> function) static <T> SerializableComparator<T> Functions.toLongComparator(LongFunction<T> function) Constructors in org.eclipse.collections.impl.block.factory with parameters of type LongFunctionModifierConstructorDescriptionprivateLongFunctionChain(Function<T1, T2> function1, LongFunction<? super T2> function2) privateLongFunctionHashingStrategy(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement LongFunctionModifier and TypeClassDescriptionclassLongFunctionImpl 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. -
Uses of LongFunction in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as LongFunctionModifier and TypeFieldDescriptionprivate final LongFunction<? super T> SumOfLongProcedure.functionConstructors in org.eclipse.collections.impl.block.procedure with parameters of type LongFunction -
Uses of LongFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as LongFunctionModifier and TypeFieldDescriptionprivate final LongFunction<? super T> CollectLongProcedure.longFunctionConstructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type LongFunctionModifierConstructorDescriptionCollectLongProcedure(LongFunction<? super T> longFunction, MutableLongCollection targetCollection) -
Uses of LongFunction in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.collectLong(LongFunction<? super T> longFunction) <R extends MutableLongCollection>
RAbstractSynchronizedRichIterable.collectLong(LongFunction<? super T> longFunction, R target) <V> ObjectLongMap<V> AbstractSynchronizedRichIterable.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) longAbstractSynchronizedRichIterable.sumOfLong(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.collection.immutable
Methods in org.eclipse.collections.impl.collection.immutable with parameters of type LongFunctionModifier and TypeMethodDescription<V> ImmutableObjectLongMap<V> AbstractImmutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type LongFunctionModifier and TypeMethodDescription<R extends MutableLongCollection>
RAbstractCollectionAdapter.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RAbstractMultiReaderMutableCollection.collectLong(LongFunction<? super T> longFunction, R target) final <R extends MutableLongCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.collectLong(LongFunction<? super T> longFunction, R target) AbstractSynchronizedMutableCollection.collectLong(LongFunction<? super T> longFunction) AbstractUnmodifiableMutableCollection.collectLong(LongFunction<? super T> longFunction) <R extends MutableLongCollection>
RAbstractUnmodifiableMutableCollection.collectLong(LongFunction<? super T> longFunction, R target) <V> MutableObjectLongMap<V> AbstractCollectionAdapter.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> AbstractMultiReaderMutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> AbstractMultiReaderMutableCollection.UntouchableMutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> AbstractMutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> AbstractSynchronizedMutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> AbstractUnmodifiableMutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) longAbstractCollectionAdapter.sumOfLong(LongFunction<? super T> function) longAbstractMultiReaderMutableCollection.sumOfLong(LongFunction<? super T> function) longAbstractMultiReaderMutableCollection.UntouchableMutableCollection.sumOfLong(LongFunction<? super T> function) longAbstractUnmodifiableMutableCollection.sumOfLong(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type LongFunctionModifier and TypeMethodDescriptionstatic <T, R extends MutableLongCollection>
Collector<T, ?, R> Collectors2.collectLong(LongFunction<? super T> function, Supplier<R> supplier) Returns a new MutableLongCollection with the results of applying the specified LongFunction on each element of the source.static <T,V> Collector <T, ?, MutableObjectLongMap<V>> Collectors2.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) Groups and sums the values using the two specified functions. -
Uses of LongFunction in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractLazyIterable.collectLong(LongFunction<? super T> longFunction) <V> ObjectLongMap<V> AbstractLazyIterable.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel with parameters of type LongFunctionModifier and TypeMethodDescriptionlongAbstractBatch.sumOfLong(LongFunction<? super T> function) longAbstractMultiReaderParallelIterable.sumOfLong(LongFunction<? super T> function) longAbstractParallelIterable.sumOfLong(LongFunction<? super T> function) longAbstractSynchronizedParallelIterable.sumOfLong(LongFunction<? super T> function) longBatch.sumOfLong(LongFunction<? super T> function) longNonParallelIterable.sumOfLong(LongFunction<? super T> function) private longAbstractParallelIterable.sumOfLongOrdered(LongFunction<Batch<T>> map) -
Uses of LongFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as LongFunctionModifier and TypeFieldDescriptionprivate final LongFunction<? super T> CollectLongIterable.functionprivate final LongFunction<? super T> CollectLongIterable.LongFunctionToProcedure.functionConstructors in org.eclipse.collections.impl.lazy.primitive with parameters of type LongFunctionModifierConstructorDescriptionCollectLongIterable(LazyIterable<T> adapted, LongFunction<? super T> function) privateLongFunctionToProcedure(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type LongFunctionModifier and TypeMethodDescriptionEmptyList.sortThisByLong(LongFunction<? super T> function) SingletonList.sortThisByLong(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractImmutableList.collectLong(LongFunction<? super T> longFunction) ImmutableArrayList.summarizeLong(LongFunction<? super T> function) longAbstractImmutableList.sumOfLong(LongFunction<? super T> function) longImmutableArrayList.sumOfLong(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type LongFunctionModifier and TypeMethodDescription<R extends MutableLongCollection>
RFastList.collectLong(LongFunction<? super T> longFunction, R target) MultiReaderFastList.collectLong(LongFunction<? super T> longFunction) MultiReaderFastList.UntouchableMutableList.collectLong(LongFunction<? super T> longFunction) SynchronizedMutableList.collectLong(LongFunction<? super T> longFunction) UnmodifiableMutableList.collectLong(LongFunction<? super T> longFunction) AbstractListAdapter.sortThisByLong(LongFunction<? super T> function) AbstractMutableList.sortThisByLong(LongFunction<? super T> function) MultiReaderFastList.sortThisByLong(LongFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByLong(LongFunction<? super T> function) SynchronizedMutableList.sortThisByLong(LongFunction<? super T> function) UnmodifiableMutableList.sortThisByLong(LongFunction<? super T> function) <V> MutableObjectLongMap<V> FastList.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) FastList.summarizeLong(LongFunction<? super T> function) longAbstractMutableList.sumOfLong(LongFunction<? super T> function) longFastList.sumOfLong(LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type LongFunctionModifier and TypeMethodDescription<V1> MutableObjectLongMap<V1> AbstractSynchronizedMapIterable.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractImmutableMap.collectLong(LongFunction<? super V> longFunction) <V1> ImmutableObjectLongMap<V1> AbstractImmutableMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableByteObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableByteObjectHashMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableByteObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableByteObjectSingletonMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableByteObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableCharObjectEmptyMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableCharObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableCharObjectHashMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableCharObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableCharObjectSingletonMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableCharObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableDoubleObjectEmptyMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableDoubleObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableDoubleObjectHashMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableDoubleObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableDoubleObjectSingletonMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableDoubleObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableFloatObjectEmptyMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableFloatObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableFloatObjectHashMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableFloatObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableFloatObjectSingletonMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableFloatObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableIntObjectEmptyMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableIntObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableIntObjectHashMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableIntObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableIntObjectSingletonMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableIntObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableLongObjectEmptyMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableLongObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableLongObjectHashMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableLongObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableLongObjectSingletonMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableLongObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableShortObjectEmptyMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableShortObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableShortObjectHashMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableShortObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableShortObjectSingletonMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RImmutableShortObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) ImmutableByteLongMapFactoryImpl.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) ImmutableCharLongMapFactoryImpl.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) ImmutableDoubleLongMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) ImmutableFloatLongMapFactoryImpl.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) ImmutableIntLongMapFactoryImpl.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) ImmutableLongBooleanMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) ImmutableLongByteMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) ImmutableLongCharMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) ImmutableLongDoubleMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableLongFloatMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) ImmutableLongIntMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) ImmutableLongLongMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <T,V> ImmutableLongObjectMap <V> ImmutableLongObjectMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) ImmutableLongShortMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) <T,K> ImmutableObjectLongMap <K> ImmutableObjectLongMapFactoryImpl.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, LongFunction<? super T> valueFunction) ImmutableShortLongMapFactoryImpl.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <V1> ImmutableObjectLongMap<V1> AbstractImmutableByteObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableCharObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableDoubleObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableFloatObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableIntObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableLongObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableShortObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableByteObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableCharObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableDoubleObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableFloatObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableIntObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableLongObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableShortObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) longImmutableByteObjectEmptyMap.sumOfLong(LongFunction<? super V> function) longImmutableByteObjectHashMap.sumOfLong(LongFunction<? super V> function) longImmutableByteObjectSingletonMap.sumOfLong(LongFunction<? super V> function) longImmutableCharObjectEmptyMap.sumOfLong(LongFunction<? super V> function) longImmutableCharObjectHashMap.sumOfLong(LongFunction<? super V> function) longImmutableCharObjectSingletonMap.sumOfLong(LongFunction<? super V> function) longImmutableDoubleObjectEmptyMap.sumOfLong(LongFunction<? super V> function) longImmutableDoubleObjectHashMap.sumOfLong(LongFunction<? super V> function) longImmutableDoubleObjectSingletonMap.sumOfLong(LongFunction<? super V> function) longImmutableFloatObjectEmptyMap.sumOfLong(LongFunction<? super V> function) longImmutableFloatObjectHashMap.sumOfLong(LongFunction<? super V> function) longImmutableFloatObjectSingletonMap.sumOfLong(LongFunction<? super V> function) longImmutableIntObjectEmptyMap.sumOfLong(LongFunction<? super V> function) longImmutableIntObjectHashMap.sumOfLong(LongFunction<? super V> function) longImmutableIntObjectSingletonMap.sumOfLong(LongFunction<? super V> function) longImmutableLongObjectEmptyMap.sumOfLong(LongFunction<? super V> function) longImmutableLongObjectHashMap.sumOfLong(LongFunction<? super V> function) longImmutableLongObjectSingletonMap.sumOfLong(LongFunction<? super V> function) longImmutableShortObjectEmptyMap.sumOfLong(LongFunction<? super V> function) longImmutableShortObjectHashMap.sumOfLong(LongFunction<? super V> function) longImmutableShortObjectSingletonMap.sumOfLong(LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractMutableMap.collectLong(LongFunction<? super V> longFunction) SynchronizedMutableMap.collectLong(LongFunction<? super V> longFunction) UnmodifiableMutableMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableMutableMap.collectLong(LongFunction<? super V> longFunction, R target) <V1> MutableObjectLongMap<V1> AbstractMutableMapIterable.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> UnmodifiableMutableMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) longUnmodifiableMutableMap.sumOfLong(LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type LongFunctionModifier and TypeMethodDescriptionByteObjectHashMap.collectLong(LongFunction<? super V> longFunction) CharObjectHashMap.collectLong(LongFunction<? super V> longFunction) DoubleObjectHashMap.collectLong(LongFunction<? super V> longFunction) FloatObjectHashMap.collectLong(LongFunction<? super V> longFunction) IntObjectHashMap.collectLong(LongFunction<? super V> longFunction) LongObjectHashMap.collectLong(LongFunction<? super V> longFunction) ShortObjectHashMap.collectLong(LongFunction<? super V> longFunction) SynchronizedByteObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RSynchronizedByteObjectMap.collectLong(LongFunction<? super V> longFunction, R target) SynchronizedCharObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RSynchronizedCharObjectMap.collectLong(LongFunction<? super V> longFunction, R target) SynchronizedDoubleObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RSynchronizedDoubleObjectMap.collectLong(LongFunction<? super V> longFunction, R target) SynchronizedFloatObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RSynchronizedFloatObjectMap.collectLong(LongFunction<? super V> longFunction, R target) SynchronizedIntObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RSynchronizedIntObjectMap.collectLong(LongFunction<? super V> longFunction, R target) SynchronizedLongObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RSynchronizedLongObjectMap.collectLong(LongFunction<? super V> longFunction, R target) SynchronizedShortObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RSynchronizedShortObjectMap.collectLong(LongFunction<? super V> longFunction, R target) UnmodifiableByteObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableByteObjectMap.collectLong(LongFunction<? super V> longFunction, R target) UnmodifiableCharObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableCharObjectMap.collectLong(LongFunction<? super V> longFunction, R target) UnmodifiableDoubleObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableDoubleObjectMap.collectLong(LongFunction<? super V> longFunction, R target) UnmodifiableFloatObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableFloatObjectMap.collectLong(LongFunction<? super V> longFunction, R target) UnmodifiableIntObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableIntObjectMap.collectLong(LongFunction<? super V> longFunction, R target) UnmodifiableLongObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableLongObjectMap.collectLong(LongFunction<? super V> longFunction, R target) UnmodifiableShortObjectMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableShortObjectMap.collectLong(LongFunction<? super V> longFunction, R target) MutableByteLongMapFactoryImpl.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) MutableCharLongMapFactoryImpl.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) MutableDoubleLongMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) MutableFloatLongMapFactoryImpl.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) MutableIntLongMapFactoryImpl.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) MutableLongBooleanMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) MutableLongByteMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) MutableLongCharMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableLongDoubleMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableLongFloatMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) MutableLongIntMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) MutableLongLongMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <T,V> MutableLongObjectMap <V> MutableLongObjectMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) MutableLongShortMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) <T,K> MutableObjectLongMap <K> MutableObjectLongMapFactoryImpl.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, LongFunction<? super T> valueFunction) MutableShortLongMapFactoryImpl.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <P> longByteLongHashMap.getIfAbsentPutWith(byte key, LongFunction<? super P> function, P parameter) <P> longCharLongHashMap.getIfAbsentPutWith(char key, LongFunction<? super P> function, P parameter) <P> longDoubleLongHashMap.getIfAbsentPutWith(double key, LongFunction<? super P> function, P parameter) <P> longFloatLongHashMap.getIfAbsentPutWith(float key, LongFunction<? super P> function, P parameter) <P> longIntLongHashMap.getIfAbsentPutWith(int key, LongFunction<? super P> function, P parameter) <P> longLongLongHashMap.getIfAbsentPutWith(long key, LongFunction<? super P> function, P parameter) <P> longObjectLongHashMap.getIfAbsentPutWith(K key, LongFunction<? super P> function, P parameter) <P> longObjectLongHashMapWithHashingStrategy.getIfAbsentPutWith(K key, LongFunction<? super P> function, P parameter) <P> longShortLongHashMap.getIfAbsentPutWith(short key, LongFunction<? super P> function, P parameter) <P> longSynchronizedByteLongMap.getIfAbsentPutWith(byte key, LongFunction<? super P> function, P parameter) <P> longSynchronizedCharLongMap.getIfAbsentPutWith(char key, LongFunction<? super P> function, P parameter) <P> longSynchronizedDoubleLongMap.getIfAbsentPutWith(double key, LongFunction<? super P> function, P parameter) <P> longSynchronizedFloatLongMap.getIfAbsentPutWith(float key, LongFunction<? super P> function, P parameter) <P> longSynchronizedIntLongMap.getIfAbsentPutWith(int key, LongFunction<? super P> function, P parameter) <P> longSynchronizedLongLongMap.getIfAbsentPutWith(long key, LongFunction<? super P> function, P parameter) <P> longSynchronizedObjectLongMap.getIfAbsentPutWith(K key, LongFunction<? super P> function, P parameter) <P> longSynchronizedShortLongMap.getIfAbsentPutWith(short key, LongFunction<? super P> function, P parameter) <P> longUnmodifiableByteLongMap.getIfAbsentPutWith(byte key, LongFunction<? super P> function, P parameter) <P> longUnmodifiableCharLongMap.getIfAbsentPutWith(char key, LongFunction<? super P> function, P parameter) <P> longUnmodifiableDoubleLongMap.getIfAbsentPutWith(double key, LongFunction<? super P> function, P parameter) <P> longUnmodifiableFloatLongMap.getIfAbsentPutWith(float key, LongFunction<? super P> function, P parameter) <P> longUnmodifiableIntLongMap.getIfAbsentPutWith(int key, LongFunction<? super P> function, P parameter) <P> longUnmodifiableLongLongMap.getIfAbsentPutWith(long key, LongFunction<? super P> function, P parameter) <P> longUnmodifiableObjectLongMap.getIfAbsentPutWith(K key, LongFunction<? super P> function, P parameter) <P> longUnmodifiableShortLongMap.getIfAbsentPutWith(short key, LongFunction<? super P> function, P parameter) longObjectLongHashMap.getIfAbsentPutWithKey(K key, LongFunction<? super K> function) longObjectLongHashMapWithHashingStrategy.getIfAbsentPutWithKey(K key, LongFunction<? super K> function) longSynchronizedObjectLongMap.getIfAbsentPutWithKey(K key, LongFunction<? super K> function) longUnmodifiableObjectLongMap.getIfAbsentPutWithKey(K key, LongFunction<? super K> function) <V1> MutableObjectLongMap<V1> ByteObjectHashMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> CharObjectHashMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> DoubleObjectHashMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> FloatObjectHashMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> IntObjectHashMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> LongObjectHashMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> ShortObjectHashMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> SynchronizedByteObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> SynchronizedCharObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> SynchronizedDoubleObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> SynchronizedFloatObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> SynchronizedIntObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> SynchronizedLongObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> SynchronizedShortObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> UnmodifiableByteObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> UnmodifiableCharObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> UnmodifiableDoubleObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> UnmodifiableFloatObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> UnmodifiableIntObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> UnmodifiableLongObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> MutableObjectLongMap<V1> UnmodifiableShortObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) longByteObjectHashMap.sumOfLong(LongFunction<? super V> function) longCharObjectHashMap.sumOfLong(LongFunction<? super V> function) longDoubleObjectHashMap.sumOfLong(LongFunction<? super V> function) longFloatObjectHashMap.sumOfLong(LongFunction<? super V> function) longIntObjectHashMap.sumOfLong(LongFunction<? super V> function) longLongObjectHashMap.sumOfLong(LongFunction<? super V> function) longShortObjectHashMap.sumOfLong(LongFunction<? super V> function) longSynchronizedByteObjectMap.sumOfLong(LongFunction<? super V> function) longSynchronizedCharObjectMap.sumOfLong(LongFunction<? super V> function) longSynchronizedDoubleObjectMap.sumOfLong(LongFunction<? super V> function) longSynchronizedFloatObjectMap.sumOfLong(LongFunction<? super V> function) longSynchronizedIntObjectMap.sumOfLong(LongFunction<? super V> function) longSynchronizedLongObjectMap.sumOfLong(LongFunction<? super V> function) longSynchronizedShortObjectMap.sumOfLong(LongFunction<? super V> function) longUnmodifiableByteObjectMap.sumOfLong(LongFunction<? super V> function) longUnmodifiableCharObjectMap.sumOfLong(LongFunction<? super V> function) longUnmodifiableDoubleObjectMap.sumOfLong(LongFunction<? super V> function) longUnmodifiableFloatObjectMap.sumOfLong(LongFunction<? super V> function) longUnmodifiableIntObjectMap.sumOfLong(LongFunction<? super V> function) longUnmodifiableLongObjectMap.sumOfLong(LongFunction<? super V> function) longUnmodifiableShortObjectMap.sumOfLong(LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableOrderedMapAdapter.collectLong(LongFunction<? super V> longFunction) <VV> ImmutableObjectLongMap<VV> ImmutableOrderedMapAdapter.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type LongFunctionModifier and TypeMethodDescriptionOrderedMapAdapter.collectLong(LongFunction<? super V> longFunction) UnmodifiableMutableOrderedMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableMutableOrderedMap.collectLong(LongFunction<? super V> longFunction, R target) <V1> MutableObjectLongMap<V1> OrderedMapAdapter.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <VV> MutableObjectLongMap<VV> UnmodifiableMutableOrderedMap.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) UnmodifiableMutableOrderedMap.summarizeLong(LongFunction<? super V> function) longUnmodifiableMutableOrderedMap.sumOfLong(LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedMap.collectLong(LongFunction<? super V> longFunction) <V1> ImmutableObjectLongMap<V1> AbstractImmutableSortedMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectLong(LongFunction<? super V> longFunction) SynchronizedSortedMap.collectLong(LongFunction<? super V> longFunction) UnmodifiableTreeMap.collectLong(LongFunction<? super V> longFunction) <R extends MutableLongCollection>
RUnmodifiableTreeMap.collectLong(LongFunction<? super V> longFunction, R target) <V1> MutableObjectLongMap<V1> UnmodifiableTreeMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) longUnmodifiableTreeMap.sumOfLong(LongFunction<? super V> function) -
Uses of LongFunction in org.eclipse.collections.impl.parallel
Fields in org.eclipse.collections.impl.parallel declared as LongFunctionModifier and TypeFieldDescriptionprivate final LongFunction<? super T> ParallelIterate.SumByLongProcedure.functionMethods in org.eclipse.collections.impl.parallel with parameters of type LongFunctionModifier and TypeMethodDescriptionstatic <T,V> ObjectLongMap <V> ParallelIterate.sumByLong(Iterable<T> iterable, Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) Constructors in org.eclipse.collections.impl.parallel with parameters of type LongFunctionModifierConstructorDescriptionprivateSumByLongProcedure(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractImmutableSet.collectLong(LongFunction<? super T> longFunction) -
Uses of LongFunction in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type LongFunctionModifier and TypeMethodDescriptionMultiReaderUnifiedSet.collectLong(LongFunction<? super T> longFunction) MultiReaderUnifiedSet.UntouchableMutableSet.collectLong(LongFunction<? super T> longFunction) SynchronizedMutableSet.collectLong(LongFunction<? super T> longFunction) UnmodifiableMutableSet.collectLong(LongFunction<? super T> longFunction) -
Uses of LongFunction in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type LongFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedSet.collectLong(LongFunction<? super T> longFunction) -
Uses of LongFunction in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type LongFunctionModifier and TypeMethodDescriptionSortedSetAdapter.collectLong(LongFunction<? super T> longFunction) SynchronizedSortedSet.collectLong(LongFunction<? super T> longFunction) TreeSortedSet.collectLong(LongFunction<? super T> longFunction) UnmodifiableSortedSet.collectLong(LongFunction<? super T> longFunction) -
Uses of LongFunction in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type LongFunctionModifier and TypeMethodDescriptionImmutableArrayStack.collectLong(LongFunction<? super T> longFunction) Deprecated.<R extends MutableLongCollection>
RImmutableArrayStack.collectLong(LongFunction<? super T> longFunction, R target) Deprecated.ImmutableEmptyStack.collectLong(LongFunction<? super T> longFunction) <R extends MutableLongCollection>
RImmutableEmptyStack.collectLong(LongFunction<? super T> longFunction, R target) ImmutableNotEmptyStack.collectLong(LongFunction<? super T> function) <V> ImmutableObjectLongMap<V> ImmutableArrayStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) Deprecated.<V> ImmutableObjectLongMap<V> ImmutableEmptyStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> ImmutableObjectLongMap<V> ImmutableNotEmptyStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) longImmutableArrayStack.sumOfLong(LongFunction<? super T> longFunction) Deprecated. -
Uses of LongFunction in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type LongFunctionModifier and TypeMethodDescriptionArrayStack.collectLong(LongFunction<? super T> longFunction) <R extends MutableLongCollection>
RArrayStack.collectLong(LongFunction<? super T> longFunction, R target) SynchronizedStack.collectLong(LongFunction<? super T> longFunction) <R extends MutableLongCollection>
RSynchronizedStack.collectLong(LongFunction<? super T> longFunction, R target) UnmodifiableStack.collectLong(LongFunction<? super T> longFunction) <R extends MutableLongCollection>
RUnmodifiableStack.collectLong(LongFunction<? super T> longFunction, R target) <V> MutableObjectLongMap<V> ArrayStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> SynchronizedStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> MutableObjectLongMap<V> UnmodifiableStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) longArrayStack.sumOfLong(LongFunction<? super T> longFunction) longSynchronizedStack.sumOfLong(LongFunction<? super T> longFunction) longUnmodifiableStack.sumOfLong(LongFunction<? super T> longFunction) -
Uses of LongFunction in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type LongFunctionModifier and TypeMethodDescriptionstatic <T> MutableLongListArrayIterate.collectLong(T[] objectArray, LongFunction<? super T> longFunction) static <T, R extends MutableLongCollection>
RArrayIterate.collectLong(T[] objectArray, LongFunction<? super T> longFunction, R target) static <T> MutableLongListArrayListIterate.collectLong(ArrayList<T> list, LongFunction<? super T> longFunction) static <T, R extends MutableLongCollection>
RArrayListIterate.collectLong(ArrayList<T> list, LongFunction<? super T> longFunction, R target) static <T> MutableLongCollectionIterate.collectLong(Iterable<T> iterable, LongFunction<? super T> longFunction) Returns a newlongcollection with the results of applying the specified longFunction for each element of the iterable.static <T, R extends MutableLongCollection>
RIterate.collectLong(Iterable<T> iterable, LongFunction<? super T> longFunction, R target) Same asIterate.collectLong(Iterable, LongFunction), except that the results are gathered into the specifiedtargetcollection.static <T> MutableLongListListIterate.collectLong(List<T> list, LongFunction<? super T> longFunction) static <T, R extends MutableLongCollection>
RListIterate.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>
RMapIterate.collectLong(Map<K, V> map, LongFunction<? super V> longFunction, R target) private static <T, R extends MutableLongCollection>
RArrayListIterate.collectLongFromInternalArray(ArrayList<T> source, LongFunction<? super T> longFunction, int elementsToCollect, R target) static <V,T> ObjectLongMap <V> ArrayIterate.sumByLong(T[] array, Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) static <T,V> ObjectLongMap <V> Iterate.sumByLong(Iterable<T> iterable, Function<T, V> groupBy, LongFunction<? super T> function) static <V,T> ObjectLongMap <V> ListIterate.sumByLong(List<T> list, Function<T, V> groupBy, LongFunction<? super T> function) static <T> longArrayIterate.sumOfLong(T[] array, LongFunction<? super T> function) static <T> longIterate.sumOfLong(Iterable<T> iterable, LongFunction<? super T> function) static <T> longListIterate.sumOfLong(List<T> list, LongFunction<? super T> function) -
Uses of LongFunction in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type LongFunctionModifier and TypeMethodDescriptionstatic <R extends MutableLongCollection, T>
RInternalArrayIterate.collectLong(T[] items, int size, LongFunction<? super T> longFunction, R target) Adds all array elements to the target MutableLongCollection after using the function supplied to convert each source element to the appropriate typestatic <T> MutableLongCollectionIterableIterate.collectLong(Iterable<T> iterable, LongFunction<? super T> longFunction) static <T, R extends MutableLongCollection>
RIterableIterate.collectLong(Iterable<T> iterable, LongFunction<? super T> longFunction, R target) static <T> MutableLongCollectionIteratorIterate.collectLong(Iterator<T> iterator, LongFunction<? super T> longFunction) static <T, R extends MutableLongCollection>
RIteratorIterate.collectLong(Iterator<T> iterator, LongFunction<? super T> longFunction, R target) static <T> MutableLongListRandomAccessListIterate.collectLong(List<T> list, LongFunction<? super T> longFunction) static <T, R extends MutableLongCollection>
RRandomAccessListIterate.collectLong(List<T> list, LongFunction<? super T> longFunction, R target) static <V,T> MutableObjectLongMap <V> InternalArrayIterate.sumByLong(T[] array, int size, Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) static <V,T> ObjectLongMap <V> IterableIterate.sumByLong(Iterable<T> iterable, Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) static <V,T> ObjectLongMap <V> RandomAccessListIterate.sumByLong(List<T> list, Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) static <T> LongSummaryStatisticsInternalArrayIterate.summarizeLong(T[] items, int size, LongFunction<? super T> function) static <T> longInternalArrayIterate.sumOfLong(T[] array, int size, LongFunction<? super T> function) static <T> longIterableIterate.sumOfLong(Iterable<T> iterable, LongFunction<? super T> function) static <T> longIteratorIterate.sumOfLong(Iterator<T> iterator, LongFunction<? super T> function) static <T> longRandomAccessListIterate.sumOfLong(List<T> list, LongFunction<? super T> function)