Uses of Interface
org.eclipse.collections.api.block.function.primitive.DoubleFunction
Packages that use DoubleFunction
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 DoubleFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type DoubleFunctionModifier and TypeMethodDescriptionLazyIterable.collectDouble(DoubleFunction<? super T> doubleFunction) Returns a lazy DoubleIterable which will transform the underlying iterable data to double values based on the doubleFunction.RichIterable.collectDouble(DoubleFunction<? super T> doubleFunction) Returns a new primitivedoubleiterable with the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RRichIterable.collectDouble(DoubleFunction<? super T> doubleFunction, R target) Same asRichIterable.collectDouble(DoubleFunction), except that the results are gathered into the specifiedtargetcollection.<V> ObjectDoubleMap<V> RichIterable.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) Groups and sums the values using the two specified functions.default DoubleSummaryStatisticsRichIterable.summarizeDouble(DoubleFunction<? super T> function) Returns the result of summarizing the value returned from applying the DoubleFunction to each element of the iterable.doubleParallelIterable.sumOfDouble(DoubleFunction<? super T> function) Returns the final double result of evaluating function for each element of the iterable in parallel and adding the results together.doubleRichIterable.sumOfDouble(DoubleFunction<? super T> function) Returns the final double result of evaluating function for each element of the iterable and adding the results together. -
Uses of DoubleFunction in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableBag.collectDouble(DoubleFunction<? super T> doubleFunction) default MutableDoubleBagMutableBag.collectDouble(DoubleFunction<? super T> doubleFunction) UnsortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) default DoubleSummaryStatisticsBag.summarizeDouble(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) MutableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) SortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction) default MutableDoubleCollectionMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction) Returns a new primitivedoubleiterable with the results of applying the specified function on each element of the source collection.<V> ImmutableObjectDoubleMap<V> ImmutableCollection.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V> MutableCollection.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableByteDoubleMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharDoubleMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleBooleanMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleByteMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleCharMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleDoubleMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleFloatMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleIntMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleLongMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V> ImmutableDoubleObjectMap <V> ImmutableDoubleObjectMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anImmutableDoubleObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleShortMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatDoubleMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntDoubleMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongDoubleMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K> ImmutableObjectDoubleMap <K> ImmutableObjectDoubleMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableObjectDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortDoubleMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableShortDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteDoubleMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharDoubleMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleBooleanMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleByteMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleCharMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleDoubleMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleFloatMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleIntMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleLongMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V> MutableDoubleObjectMap <V> MutableDoubleObjectMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anMutableDoubleObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleShortMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatDoubleMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntDoubleMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongDoubleMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K> MutableObjectDoubleMap <K> MutableObjectDoubleMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableObjectDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortDoubleMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableShortDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction. -
Uses of DoubleFunction in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableList.collectDouble(DoubleFunction<? super T> doubleFunction) ListIterable.collectDouble(DoubleFunction<? super T> doubleFunction) default MutableDoubleListMutableList.collectDouble(DoubleFunction<? super T> doubleFunction) MultiReaderList.sortThisByDouble(DoubleFunction<? super T> function) MutableList.sortThisByDouble(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) ImmutableOrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction) MutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) MutableOrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction) OrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction) UnsortedMapIterable.collectDouble(DoubleFunction<? super V> doubleFunction) <VV> ImmutableObjectDoubleMap<VV> ImmutableOrderedMap.sumByDouble(Function<? super V, ? extends VV> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> MutableMapIterable.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutablePrimitiveObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) MutablePrimitiveObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) PrimitiveObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <P> doubleMutableByteDoubleMap.getIfAbsentPutWith(byte key, DoubleFunction<? 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> doubleMutableCharDoubleMap.getIfAbsentPutWith(char key, DoubleFunction<? 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> doubleMutableDoubleDoubleMap.getIfAbsentPutWith(double key, DoubleFunction<? 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> doubleMutableFloatDoubleMap.getIfAbsentPutWith(float key, DoubleFunction<? 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> doubleMutableIntDoubleMap.getIfAbsentPutWith(int key, DoubleFunction<? 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> doubleMutableLongDoubleMap.getIfAbsentPutWith(long key, DoubleFunction<? 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> doubleMutableObjectDoubleMap.getIfAbsentPutWith(K key, DoubleFunction<? 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> doubleMutableShortDoubleMap.getIfAbsentPutWith(short key, DoubleFunction<? 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.doubleMutableObjectDoubleMap.getIfAbsentPutWithKey(K key, DoubleFunction<? 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> ImmutableObjectDoubleMap<VV> ImmutablePrimitiveObjectMap.sumByDouble(Function<? super V, ? extends VV> groupBy, DoubleFunction<? super V> function) <VV> MutableObjectDoubleMap<VV> MutablePrimitiveObjectMap.sumByDouble(Function<? super V, ? extends VV> groupBy, DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) MutableSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) SortedMapIterable.collectDouble(DoubleFunction<? super V> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type DoubleFunctionModifier and TypeMethodDescriptionOrderedIterable.collectDouble(DoubleFunction<? super T> doubleFunction) ReversibleIterable.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableSet.collectDouble(DoubleFunction<? super T> doubleFunction) default MutableDoubleSetMutableSet.collectDouble(DoubleFunction<? super T> doubleFunction) UnsortedSetIterable.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) MutableSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) SortedSetIterable.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableStack.collectDouble(DoubleFunction<? super T> doubleFunction) MutableStack.collectDouble(DoubleFunction<? super T> doubleFunction) StackIterable.collectDouble(DoubleFunction<? super T> doubleFunction) <V> ImmutableObjectDoubleMap<V> ImmutableStack.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V> MutableStack.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type DoubleFunctionModifier and TypeMethodDescriptionUnmodifiableRichIterable.collectDouble(DoubleFunction<? super T> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableRichIterable.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <V> ObjectDoubleMap<V> UnmodifiableRichIterable.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) doubleAbstractRichIterable.sumOfDouble(DoubleFunction<? super T> function) doubleUnmodifiableRichIterable.sumOfDouble(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type DoubleFunctionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RAbstractBag.collectDouble(DoubleFunction<? super T> doubleFunction, R target) doubleAbstractBag.sumOfDouble(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractImmutableBag.collectDouble(DoubleFunction<? super T> doubleFunction) ImmutableEmptyBag.collectDouble(DoubleFunction<? super T> doubleFunction) <V> ImmutableObjectDoubleMap<V> AbstractImmutableBagIterable.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionMultiReaderHashBag.collectDouble(DoubleFunction<? super T> doubleFunction) MultiReaderHashBag.UntouchableMutableBag.collectDouble(DoubleFunction<? super T> doubleFunction) SynchronizedBag.collectDouble(DoubleFunction<? super T> doubleFunction) UnmodifiableBag.collectDouble(DoubleFunction<? super T> doubleFunction) <V> MutableObjectDoubleMap<V> AbstractMutableBagIterable.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) SynchronizedSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) UnmodifiableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type DoubleFunctionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RAbstractBiMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) doubleAbstractBiMap.sumOfDouble(DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractImmutableBiMap.collectDouble(DoubleFunction<? super V> doubleFunction) <V1> ImmutableObjectDoubleMap<V1> AbstractImmutableBiMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractMutableBiMap.collectDouble(DoubleFunction<? super V> doubleFunction) UnmodifiableBiMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableBiMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <V1> MutableObjectDoubleMap<V1> AbstractMutableBiMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> UnmodifiableBiMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) doubleUnmodifiableBiMap.sumOfDouble(DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.block.comparator.primitive
Fields in org.eclipse.collections.impl.block.comparator.primitive declared as DoubleFunctionModifier and TypeFieldDescriptionprivate final DoubleFunction<T> DoubleFunctionComparator.functionConstructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type DoubleFunction -
Uses of DoubleFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement DoubleFunctionModifier and TypeClassDescriptionstatic final classprivate static classprivate static classprivate static classprivate static classprivate static final classFields in org.eclipse.collections.impl.block.factory declared as DoubleFunctionModifier and TypeFieldDescriptionprivate final DoubleFunction<? super T> HashingStrategies.DoubleFunctionHashingStrategy.functionprivate final DoubleFunction<? super T2> Functions.DoubleFunctionChain.function2private static final DoubleFunction<String> StringFunctions.TO_PRIMITIVE_DOUBLEMethods in org.eclipse.collections.impl.block.factory that return DoubleFunctionModifier and TypeMethodDescriptionstatic DoubleFunction<String> StringFunctions.toPrimitiveDouble()static DoubleFunction<Double> PrimitiveFunctions.unboxDoubleToDouble()static DoubleFunction<Integer> PrimitiveFunctions.unboxIntegerToDouble()static DoubleFunction<Number> PrimitiveFunctions.unboxNumberToDouble()Methods in org.eclipse.collections.impl.block.factory with parameters of type DoubleFunctionModifier and TypeMethodDescriptionstatic <T> SerializableComparator<T> Comparators.byDoubleFunction(DoubleFunction<T> function) static <T1,T2> Functions.DoubleFunctionChain <T1, T2> Functions.chainDouble(Function<T1, T2> function1, DoubleFunction<? super T2> function2) Functions.FunctionChain.chainDouble(DoubleFunction<? super T3> function) static <T> HashingStrategy<T> HashingStrategies.fromDoubleFunction(DoubleFunction<? super T> function) static <T,V> Function2 <MutableObjectDoubleMap<V>, T, MutableObjectDoubleMap<V>> PrimitiveFunctions.sumByDoubleFunction(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) static <T> Procedure2<DoubleSummaryStatistics, T> Procedures2.summarizeDouble(DoubleFunction<? super T> function) static <T> SerializableComparator<T> Functions.toDoubleComparator(DoubleFunction<T> function) Constructors in org.eclipse.collections.impl.block.factory with parameters of type DoubleFunctionModifierConstructorDescriptionprivateDoubleFunctionChain(Function<T1, T2> function1, DoubleFunction<? super T2> function2) privateDoubleFunctionHashingStrategy(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement DoubleFunctionModifier and TypeClassDescriptionclassDoubleFunctionImpl is an abstract implementation of the DoubleFunction interface which can be subclassed explicitly or as an anonymous inner class, without needing to override the valueOf method defined in Function. -
Uses of DoubleFunction in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as DoubleFunctionModifier and TypeFieldDescriptionprivate final DoubleFunction<? super T> SumOfDoubleProcedure.functionConstructors in org.eclipse.collections.impl.block.procedure with parameters of type DoubleFunction -
Uses of DoubleFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as DoubleFunctionModifier and TypeFieldDescriptionprivate final DoubleFunction<? super T> CollectDoubleProcedure.doubleFunctionConstructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type DoubleFunctionModifierConstructorDescriptionCollectDoubleProcedure(DoubleFunction<? super T> doubleFunction, MutableDoubleCollection targetCollection) -
Uses of DoubleFunction in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.collectDouble(DoubleFunction<? super T> doubleFunction) <R extends MutableDoubleCollection>
RAbstractSynchronizedRichIterable.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <V> ObjectDoubleMap<V> AbstractSynchronizedRichIterable.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) doubleAbstractSynchronizedRichIterable.sumOfDouble(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.collection.immutable
Methods in org.eclipse.collections.impl.collection.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescription<V> ImmutableObjectDoubleMap<V> AbstractImmutableCollection.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RAbstractCollectionAdapter.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction, R target) final <R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction, R target) AbstractSynchronizedMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction) AbstractUnmodifiableMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction) <R extends MutableDoubleCollection>
RAbstractUnmodifiableMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <V> MutableObjectDoubleMap<V> AbstractCollectionAdapter.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V> AbstractMultiReaderMutableCollection.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V> AbstractMultiReaderMutableCollection.UntouchableMutableCollection.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V> AbstractMutableCollection.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V> AbstractSynchronizedMutableCollection.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V> AbstractUnmodifiableMutableCollection.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) doubleAbstractCollectionAdapter.sumOfDouble(DoubleFunction<? super T> function) doubleAbstractMultiReaderMutableCollection.sumOfDouble(DoubleFunction<? super T> function) doubleAbstractMultiReaderMutableCollection.UntouchableMutableCollection.sumOfDouble(DoubleFunction<? super T> function) doubleAbstractUnmodifiableMutableCollection.sumOfDouble(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type DoubleFunctionModifier and TypeMethodDescriptionstatic <T, R extends MutableDoubleCollection>
Collector<T, ?, R> Collectors2.collectDouble(DoubleFunction<? super T> function, Supplier<R> supplier) Returns a new MutableDoubleCollection with the results of applying the specified DoubleFunction on each element of the source.static <T,V> Collector <T, ?, MutableObjectDoubleMap<V>> Collectors2.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) Groups and sums the values using the two specified functions. -
Uses of DoubleFunction in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractLazyIterable.collectDouble(DoubleFunction<? super T> doubleFunction) <V> ObjectDoubleMap<V> AbstractLazyIterable.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractBatch.sumOfDouble(DoubleFunction<? super T> function) doubleAbstractMultiReaderParallelIterable.sumOfDouble(DoubleFunction<? super T> function) doubleAbstractParallelIterable.sumOfDouble(DoubleFunction<? super T> function) doubleAbstractSynchronizedParallelIterable.sumOfDouble(DoubleFunction<? super T> function) Batch.sumOfDouble(DoubleFunction<? super T> function) doubleNonParallelIterable.sumOfDouble(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as DoubleFunctionModifier and TypeFieldDescriptionprivate final DoubleFunction<? super T> CollectDoubleIterable.DoubleFunctionToProcedure.functionprivate final DoubleFunction<? super T> CollectDoubleIterable.functionConstructors in org.eclipse.collections.impl.lazy.primitive with parameters of type DoubleFunctionModifierConstructorDescriptionCollectDoubleIterable(LazyIterable<T> adapted, DoubleFunction<? super T> function) privateDoubleFunctionToProcedure(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type DoubleFunctionModifier and TypeMethodDescriptionEmptyList.sortThisByDouble(DoubleFunction<? super T> function) SingletonList.sortThisByDouble(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractImmutableList.collectDouble(DoubleFunction<? super T> doubleFunction) ImmutableArrayList.summarizeDouble(DoubleFunction<? super T> function) doubleAbstractImmutableList.sumOfDouble(DoubleFunction<? super T> function) doubleImmutableArrayList.sumOfDouble(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RFastList.collectDouble(DoubleFunction<? super T> doubleFunction, R target) MultiReaderFastList.collectDouble(DoubleFunction<? super T> doubleFunction) MultiReaderFastList.UntouchableMutableList.collectDouble(DoubleFunction<? super T> doubleFunction) SynchronizedMutableList.collectDouble(DoubleFunction<? super T> doubleFunction) UnmodifiableMutableList.collectDouble(DoubleFunction<? super T> doubleFunction) AbstractListAdapter.sortThisByDouble(DoubleFunction<? super T> function) AbstractMutableList.sortThisByDouble(DoubleFunction<? super T> function) MultiReaderFastList.sortThisByDouble(DoubleFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByDouble(DoubleFunction<? super T> function) SynchronizedMutableList.sortThisByDouble(DoubleFunction<? super T> function) UnmodifiableMutableList.sortThisByDouble(DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V> FastList.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) FastList.summarizeDouble(DoubleFunction<? super T> function) doubleAbstractMutableList.sumOfDouble(DoubleFunction<? super T> function) doubleFastList.sumOfDouble(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type DoubleFunctionModifier and TypeMethodDescription<V1> MutableObjectDoubleMap<V1> AbstractSynchronizedMapIterable.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractImmutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) <V1> ImmutableObjectDoubleMap<V1> AbstractImmutableMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableByteObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableByteObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableByteObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableByteObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableByteObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableCharObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableCharObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableCharObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableCharObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableCharObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableCharObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableDoubleObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableDoubleObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableDoubleObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableDoubleObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableDoubleObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableDoubleObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableFloatObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableFloatObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableFloatObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableFloatObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableFloatObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableFloatObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableIntObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableIntObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableIntObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableIntObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableIntObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableIntObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableLongObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableLongObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableLongObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableLongObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableLongObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableLongObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableShortObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableShortObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableShortObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableShortObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableShortObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RImmutableShortObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) ImmutableByteDoubleMapFactoryImpl.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableCharDoubleMapFactoryImpl.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableDoubleBooleanMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) ImmutableDoubleByteMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) ImmutableDoubleCharMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) ImmutableDoubleDoubleMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableDoubleFloatMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) ImmutableDoubleIntMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) ImmutableDoubleLongMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <T,V> ImmutableDoubleObjectMap <V> ImmutableDoubleObjectMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) ImmutableDoubleShortMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) ImmutableFloatDoubleMapFactoryImpl.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableIntDoubleMapFactoryImpl.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableLongDoubleMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) <T,K> ImmutableObjectDoubleMap <K> ImmutableObjectDoubleMapFactoryImpl.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableShortDoubleMapFactoryImpl.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) <V1> ImmutableObjectDoubleMap<V1> AbstractImmutableByteObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> AbstractImmutableCharObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> AbstractImmutableDoubleObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> AbstractImmutableFloatObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> AbstractImmutableIntObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> AbstractImmutableLongObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> AbstractImmutableShortObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> ImmutableByteObjectEmptyMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> ImmutableCharObjectEmptyMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> ImmutableDoubleObjectEmptyMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> ImmutableFloatObjectEmptyMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> ImmutableIntObjectEmptyMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> ImmutableLongObjectEmptyMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> ImmutableObjectDoubleMap<V1> ImmutableShortObjectEmptyMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) doubleImmutableByteObjectEmptyMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableByteObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableByteObjectSingletonMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableCharObjectEmptyMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableCharObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableCharObjectSingletonMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableDoubleObjectEmptyMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableDoubleObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableDoubleObjectSingletonMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableFloatObjectEmptyMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableFloatObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableFloatObjectSingletonMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableIntObjectEmptyMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableIntObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableIntObjectSingletonMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableLongObjectEmptyMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableLongObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableLongObjectSingletonMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableShortObjectEmptyMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableShortObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleImmutableShortObjectSingletonMap.sumOfDouble(DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractMutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) SynchronizedMutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) UnmodifiableMutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableMutableMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <V1> MutableObjectDoubleMap<V1> AbstractMutableMapIterable.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> UnmodifiableMutableMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) doubleUnmodifiableMutableMap.sumOfDouble(DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type DoubleFunctionModifier and TypeMethodDescriptionByteObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) CharObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) DoubleObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) FloatObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) IntObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) LongObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) ShortObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction) SynchronizedByteObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RSynchronizedByteObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) SynchronizedCharObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RSynchronizedCharObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) SynchronizedDoubleObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RSynchronizedDoubleObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) SynchronizedFloatObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RSynchronizedFloatObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) SynchronizedIntObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RSynchronizedIntObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) SynchronizedLongObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RSynchronizedLongObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) SynchronizedShortObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RSynchronizedShortObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) UnmodifiableByteObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableByteObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) UnmodifiableCharObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableCharObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) UnmodifiableDoubleObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableDoubleObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) UnmodifiableFloatObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableFloatObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) UnmodifiableIntObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableIntObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) UnmodifiableLongObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableLongObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) UnmodifiableShortObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableShortObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) MutableByteDoubleMapFactoryImpl.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableCharDoubleMapFactoryImpl.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableDoubleBooleanMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) MutableDoubleByteMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) MutableDoubleCharMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableDoubleDoubleMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableDoubleFloatMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) MutableDoubleIntMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) MutableDoubleLongMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <T,V> MutableDoubleObjectMap <V> MutableDoubleObjectMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) MutableDoubleShortMapFactoryImpl.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableFloatDoubleMapFactoryImpl.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableIntDoubleMapFactoryImpl.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableLongDoubleMapFactoryImpl.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) <T,K> MutableObjectDoubleMap <K> MutableObjectDoubleMapFactoryImpl.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, DoubleFunction<? super T> valueFunction) MutableShortDoubleMapFactoryImpl.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) <P> doubleByteDoubleHashMap.getIfAbsentPutWith(byte key, DoubleFunction<? super P> function, P parameter) <P> doubleCharDoubleHashMap.getIfAbsentPutWith(char key, DoubleFunction<? super P> function, P parameter) <P> doubleDoubleDoubleHashMap.getIfAbsentPutWith(double key, DoubleFunction<? super P> function, P parameter) <P> doubleFloatDoubleHashMap.getIfAbsentPutWith(float key, DoubleFunction<? super P> function, P parameter) <P> doubleIntDoubleHashMap.getIfAbsentPutWith(int key, DoubleFunction<? super P> function, P parameter) <P> doubleLongDoubleHashMap.getIfAbsentPutWith(long key, DoubleFunction<? super P> function, P parameter) <P> doubleObjectDoubleHashMap.getIfAbsentPutWith(K key, DoubleFunction<? super P> function, P parameter) <P> doubleObjectDoubleHashMapWithHashingStrategy.getIfAbsentPutWith(K key, DoubleFunction<? super P> function, P parameter) <P> doubleShortDoubleHashMap.getIfAbsentPutWith(short key, DoubleFunction<? super P> function, P parameter) <P> doubleSynchronizedByteDoubleMap.getIfAbsentPutWith(byte key, DoubleFunction<? super P> function, P parameter) <P> doubleSynchronizedCharDoubleMap.getIfAbsentPutWith(char key, DoubleFunction<? super P> function, P parameter) <P> doubleSynchronizedDoubleDoubleMap.getIfAbsentPutWith(double key, DoubleFunction<? super P> function, P parameter) <P> doubleSynchronizedFloatDoubleMap.getIfAbsentPutWith(float key, DoubleFunction<? super P> function, P parameter) <P> doubleSynchronizedIntDoubleMap.getIfAbsentPutWith(int key, DoubleFunction<? super P> function, P parameter) <P> doubleSynchronizedLongDoubleMap.getIfAbsentPutWith(long key, DoubleFunction<? super P> function, P parameter) <P> doubleSynchronizedObjectDoubleMap.getIfAbsentPutWith(K key, DoubleFunction<? super P> function, P parameter) <P> doubleSynchronizedShortDoubleMap.getIfAbsentPutWith(short key, DoubleFunction<? super P> function, P parameter) <P> doubleUnmodifiableByteDoubleMap.getIfAbsentPutWith(byte key, DoubleFunction<? super P> function, P parameter) <P> doubleUnmodifiableCharDoubleMap.getIfAbsentPutWith(char key, DoubleFunction<? super P> function, P parameter) <P> doubleUnmodifiableDoubleDoubleMap.getIfAbsentPutWith(double key, DoubleFunction<? super P> function, P parameter) <P> doubleUnmodifiableFloatDoubleMap.getIfAbsentPutWith(float key, DoubleFunction<? super P> function, P parameter) <P> doubleUnmodifiableIntDoubleMap.getIfAbsentPutWith(int key, DoubleFunction<? super P> function, P parameter) <P> doubleUnmodifiableLongDoubleMap.getIfAbsentPutWith(long key, DoubleFunction<? super P> function, P parameter) <P> doubleUnmodifiableObjectDoubleMap.getIfAbsentPutWith(K key, DoubleFunction<? super P> function, P parameter) <P> doubleUnmodifiableShortDoubleMap.getIfAbsentPutWith(short key, DoubleFunction<? super P> function, P parameter) doubleObjectDoubleHashMap.getIfAbsentPutWithKey(K key, DoubleFunction<? super K> function) doubleObjectDoubleHashMapWithHashingStrategy.getIfAbsentPutWithKey(K key, DoubleFunction<? super K> function) doubleSynchronizedObjectDoubleMap.getIfAbsentPutWithKey(K key, DoubleFunction<? super K> function) doubleUnmodifiableObjectDoubleMap.getIfAbsentPutWithKey(K key, DoubleFunction<? super K> function) <V1> MutableObjectDoubleMap<V1> ByteObjectHashMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> CharObjectHashMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> DoubleObjectHashMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> FloatObjectHashMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> IntObjectHashMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> LongObjectHashMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> ShortObjectHashMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> SynchronizedByteObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> SynchronizedCharObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> SynchronizedDoubleObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> SynchronizedFloatObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> SynchronizedIntObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> SynchronizedLongObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> SynchronizedShortObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> UnmodifiableByteObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> UnmodifiableCharObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> UnmodifiableDoubleObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> UnmodifiableFloatObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> UnmodifiableIntObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> UnmodifiableLongObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1> UnmodifiableShortObjectMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) doubleByteObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleCharObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleDoubleObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleFloatObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleIntObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleLongObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleShortObjectHashMap.sumOfDouble(DoubleFunction<? super V> function) doubleSynchronizedByteObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleSynchronizedCharObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleSynchronizedDoubleObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleSynchronizedFloatObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleSynchronizedIntObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleSynchronizedLongObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleSynchronizedShortObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleUnmodifiableByteObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleUnmodifiableCharObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleUnmodifiableDoubleObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleUnmodifiableFloatObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleUnmodifiableIntObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleUnmodifiableLongObjectMap.sumOfDouble(DoubleFunction<? super V> function) doubleUnmodifiableShortObjectMap.sumOfDouble(DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableOrderedMapAdapter.collectDouble(DoubleFunction<? super V> doubleFunction) <VV> ImmutableObjectDoubleMap<VV> ImmutableOrderedMapAdapter.sumByDouble(Function<? super V, ? extends VV> groupBy, DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionOrderedMapAdapter.collectDouble(DoubleFunction<? super V> doubleFunction) UnmodifiableMutableOrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableMutableOrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <V1> MutableObjectDoubleMap<V1> OrderedMapAdapter.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <VV> MutableObjectDoubleMap<VV> UnmodifiableMutableOrderedMap.sumByDouble(Function<? super V, ? extends VV> groupBy, DoubleFunction<? super V> function) UnmodifiableMutableOrderedMap.summarizeDouble(DoubleFunction<? super V> function) doubleUnmodifiableMutableOrderedMap.sumOfDouble(DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) <V1> ImmutableObjectDoubleMap<V1> AbstractImmutableSortedMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) SynchronizedSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) UnmodifiableTreeMap.collectDouble(DoubleFunction<? super V> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableTreeMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <V1> MutableObjectDoubleMap<V1> UnmodifiableTreeMap.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) doubleUnmodifiableTreeMap.sumOfDouble(DoubleFunction<? super V> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.parallel
Fields in org.eclipse.collections.impl.parallel declared as DoubleFunctionModifier and TypeFieldDescriptionprivate final DoubleFunction<? super T> ParallelIterate.SumByDoubleProcedure.functionMethods in org.eclipse.collections.impl.parallel with parameters of type DoubleFunctionModifier and TypeMethodDescriptionstatic <T,V> ObjectDoubleMap <V> ParallelIterate.sumByDouble(Iterable<T> iterable, Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) Constructors in org.eclipse.collections.impl.parallel with parameters of type DoubleFunctionModifierConstructorDescriptionprivateSumByDoubleProcedure(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractImmutableSet.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionMultiReaderUnifiedSet.collectDouble(DoubleFunction<? super T> doubleFunction) MultiReaderUnifiedSet.UntouchableMutableSet.collectDouble(DoubleFunction<? super T> doubleFunction) SynchronizedMutableSet.collectDouble(DoubleFunction<? super T> doubleFunction) UnmodifiableMutableSet.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionSortedSetAdapter.collectDouble(DoubleFunction<? super T> doubleFunction) SynchronizedSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) TreeSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) UnmodifiableSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionImmutableArrayStack.collectDouble(DoubleFunction<? super T> doubleFunction) Deprecated.<R extends MutableDoubleCollection>
RImmutableArrayStack.collectDouble(DoubleFunction<? super T> doubleFunction, R target) Deprecated.ImmutableEmptyStack.collectDouble(DoubleFunction<? super T> doubleFunction) <R extends MutableDoubleCollection>
RImmutableEmptyStack.collectDouble(DoubleFunction<? super T> doubleFunction, R target) ImmutableNotEmptyStack.collectDouble(DoubleFunction<? super T> function) <V> ImmutableObjectDoubleMap<V> ImmutableArrayStack.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) Deprecated.<V> ImmutableObjectDoubleMap<V> ImmutableEmptyStack.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> ImmutableObjectDoubleMap<V> ImmutableNotEmptyStack.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) doubleImmutableArrayStack.sumOfDouble(DoubleFunction<? super T> doubleFunction) Deprecated. -
Uses of DoubleFunction in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type DoubleFunctionModifier and TypeMethodDescriptionArrayStack.collectDouble(DoubleFunction<? super T> doubleFunction) <R extends MutableDoubleCollection>
RArrayStack.collectDouble(DoubleFunction<? super T> doubleFunction, R target) SynchronizedStack.collectDouble(DoubleFunction<? super T> doubleFunction) <R extends MutableDoubleCollection>
RSynchronizedStack.collectDouble(DoubleFunction<? super T> doubleFunction, R target) UnmodifiableStack.collectDouble(DoubleFunction<? super T> doubleFunction) <R extends MutableDoubleCollection>
RUnmodifiableStack.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <V> MutableObjectDoubleMap<V> ArrayStack.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V> SynchronizedStack.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V> UnmodifiableStack.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) doubleArrayStack.sumOfDouble(DoubleFunction<? super T> doubleFunction) doubleSynchronizedStack.sumOfDouble(DoubleFunction<? super T> doubleFunction) doubleUnmodifiableStack.sumOfDouble(DoubleFunction<? super T> doubleFunction) -
Uses of DoubleFunction in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type DoubleFunctionModifier and TypeMethodDescriptionstatic <T> MutableDoubleListArrayIterate.collectDouble(T[] objectArray, DoubleFunction<? super T> doubleFunction) static <T, R extends MutableDoubleCollection>
RArrayIterate.collectDouble(T[] objectArray, DoubleFunction<? super T> doubleFunction, R target) static <T> MutableDoubleListArrayListIterate.collectDouble(ArrayList<T> list, DoubleFunction<? super T> doubleFunction) static <T, R extends MutableDoubleCollection>
RArrayListIterate.collectDouble(ArrayList<T> list, DoubleFunction<? super T> doubleFunction, R target) static <T> MutableDoubleCollectionIterate.collectDouble(Iterable<T> iterable, DoubleFunction<? super T> doubleFunction) Returns a newdoublecollection with the results of applying the specified doubleFunction for each element of the iterable.static <T, R extends MutableDoubleCollection>
RIterate.collectDouble(Iterable<T> iterable, DoubleFunction<? super T> doubleFunction, R target) Same asIterate.collectDouble(Iterable, DoubleFunction), except that the results are gathered into the specifiedtargetcollection.static <T> MutableDoubleListListIterate.collectDouble(List<T> list, DoubleFunction<? super T> doubleFunction) static <T, R extends MutableDoubleCollection>
RListIterate.collectDouble(List<T> list, DoubleFunction<? super T> doubleFunction, R target) static <K,V> MutableDoubleCollection MapIterate.collectDouble(Map<K, V> map, DoubleFunction<? super V> doubleFunction) static <K, V, R extends MutableDoubleCollection>
RMapIterate.collectDouble(Map<K, V> map, DoubleFunction<? super V> doubleFunction, R target) private static <T, R extends MutableDoubleCollection>
RArrayListIterate.collectDoubleFromInternalArray(ArrayList<T> source, DoubleFunction<? super T> doubleFunction, int elementsToCollect, R target) static <V,T> ObjectDoubleMap <V> ArrayIterate.sumByDouble(T[] array, Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) static <T,V> ObjectDoubleMap <V> Iterate.sumByDouble(Iterable<T> iterable, Function<T, V> groupBy, DoubleFunction<? super T> function) static <V,T> ObjectDoubleMap <V> ListIterate.sumByDouble(List<T> list, Function<T, V> groupBy, DoubleFunction<? super T> function) static <T> doubleArrayIterate.sumOfDouble(T[] array, DoubleFunction<? super T> function) static <T> doubleIterate.sumOfDouble(Iterable<T> iterable, DoubleFunction<? super T> function) static <T> doubleListIterate.sumOfDouble(List<T> list, DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type DoubleFunctionModifier and TypeMethodDescriptionstatic <R extends MutableDoubleCollection, T>
RInternalArrayIterate.collectDouble(T[] items, int size, DoubleFunction<? super T> doubleFunction, R target) Adds all array elements to the target MutableDoubleCollection after using the function supplied to convert each source element to the appropriate typestatic <T> MutableDoubleCollectionIterableIterate.collectDouble(Iterable<T> iterable, DoubleFunction<? super T> doubleFunction) static <T, R extends MutableDoubleCollection>
RIterableIterate.collectDouble(Iterable<T> iterable, DoubleFunction<? super T> doubleFunction, R target) static <T> MutableDoubleCollectionIteratorIterate.collectDouble(Iterator<T> iterator, DoubleFunction<? super T> doubleFunction) static <T, R extends MutableDoubleCollection>
RIteratorIterate.collectDouble(Iterator<T> iterator, DoubleFunction<? super T> doubleFunction, R target) static <T> MutableDoubleListRandomAccessListIterate.collectDouble(List<T> list, DoubleFunction<? super T> doubleFunction) static <T, R extends MutableDoubleCollection>
RRandomAccessListIterate.collectDouble(List<T> list, DoubleFunction<? super T> doubleFunction, R target) static <V,T> MutableObjectDoubleMap <V> InternalArrayIterate.sumByDouble(T[] array, int size, Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) static <V,T> ObjectDoubleMap <V> IterableIterate.sumByDouble(Iterable<T> iterable, Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) static <V,T> ObjectDoubleMap <V> RandomAccessListIterate.sumByDouble(List<T> list, Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) static <T> DoubleSummaryStatisticsInternalArrayIterate.summarizeDouble(T[] items, int size, DoubleFunction<? super T> function) static <T> doubleInternalArrayIterate.sumOfDouble(T[] array, int size, DoubleFunction<? super T> function) static <T> doubleIterableIterate.sumOfDouble(Iterable<T> iterable, DoubleFunction<? super T> function) static <T> doubleIteratorIterate.sumOfDouble(Iterator<T> iterator, DoubleFunction<? super T> function) static <T> doubleRandomAccessListIterate.sumOfDouble(List<T> list, DoubleFunction<? super T> function)