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.
-
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)