Uses of Interface
org.eclipse.collections.api.block.function.primitive.DoubleFunction
-
Packages that use DoubleFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBaginterface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparatorinterface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction,Predicate,SerializableComparatorandProcedure.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedureandProcedure2.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.immutable This package contains implementations of theImmutableCollectioninterface.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeListinterface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.map This package contains implementations of theMapIterableinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.immutable org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal 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 DoubleFunction Modifier and Type Method Description LazyDoubleIterableLazyIterable. collectDouble(DoubleFunction<? super T> doubleFunction)Returns a lazy DoubleIterable which will transform the underlying iterable data to double values based on the doubleFunction.DoubleIterableRichIterable. 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 java.util.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 DoubleFunction Modifier and Type Method Description ImmutableDoubleBagImmutableBag. collectDouble(DoubleFunction<? super T> doubleFunction)default MutableDoubleBagMutableBag. collectDouble(DoubleFunction<? super T> doubleFunction)DoubleBagUnsortedBag. collectDouble(DoubleFunction<? super T> doubleFunction)default java.util.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 DoubleFunction Modifier and Type Method Description ImmutableDoubleListImmutableSortedBag. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListMutableSortedBag. collectDouble(DoubleFunction<? super T> doubleFunction)DoubleListSortedBag. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleCollectionImmutableCollection. 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 DoubleFunction Modifier and Type Method Description <T> ImmutableByteDoubleMapImmutableByteDoubleMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharDoubleMapImmutableCharDoubleMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleBooleanMapImmutableDoubleBooleanMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleByteMapImmutableDoubleByteMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleCharMapImmutableDoubleCharMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleDoubleMapImmutableDoubleDoubleMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleFloatMapImmutableDoubleFloatMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleIntMapImmutableDoubleIntMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleLongMapImmutableDoubleLongMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V>
ImmutableDoubleObjectMap<V>ImmutableDoubleObjectMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anImmutableDoubleObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleShortMapImmutableDoubleShortMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatDoubleMapImmutableFloatDoubleMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntDoubleMapImmutableIntDoubleMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableLongDoubleMapImmutableLongDoubleMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
ImmutableObjectDoubleMap<K>ImmutableObjectDoubleMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableObjectDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortDoubleMapImmutableShortDoubleMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableShortDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteDoubleMapMutableByteDoubleMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharDoubleMapMutableCharDoubleMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleByteMapMutableDoubleByteMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleCharMapMutableDoubleCharMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleDoubleMapMutableDoubleDoubleMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleFloatMapMutableDoubleFloatMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleIntMapMutableDoubleIntMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleLongMapMutableDoubleLongMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V>
MutableDoubleObjectMap<V>MutableDoubleObjectMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anMutableDoubleObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleShortMapMutableDoubleShortMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatDoubleMapMutableFloatDoubleMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntDoubleMapMutableIntDoubleMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableLongDoubleMapMutableLongDoubleMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableObjectDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortDoubleMapMutableShortDoubleMapFactory. from(java.lang.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 DoubleFunction Modifier and Type Method Description ImmutableDoubleListImmutableList. collectDouble(DoubleFunction<? super T> doubleFunction)DoubleListListIterable. collectDouble(DoubleFunction<? super T> doubleFunction)default MutableDoubleListMutableList. collectDouble(DoubleFunction<? super T> doubleFunction)MultiReaderList<T>MultiReaderList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>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 DoubleFunction Modifier and Type Method Description ImmutableDoubleBagImmutableMap. collectDouble(DoubleFunction<? super V> doubleFunction)ImmutableDoubleListImmutableOrderedMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagMutableMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleListMutableOrderedMap. collectDouble(DoubleFunction<? super V> doubleFunction)DoubleListOrderedMap. collectDouble(DoubleFunction<? super V> doubleFunction)DoubleBagUnsortedMapIterable. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleBagImmutablePrimitiveObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagMutablePrimitiveObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)DoubleBagPrimitiveObjectMap. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleListImmutableSortedMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleListMutableSortedMap. collectDouble(DoubleFunction<? super V> doubleFunction)DoubleListSortedMapIterable. 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 DoubleFunction Modifier and Type Method Description OrderedDoubleIterableOrderedIterable. collectDouble(DoubleFunction<? super T> doubleFunction)ReversibleDoubleIterableReversibleIterable. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleSetImmutableSet. collectDouble(DoubleFunction<? super T> doubleFunction)default MutableDoubleSetMutableSet. collectDouble(DoubleFunction<? super T> doubleFunction)DoubleSetUnsortedSetIterable. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleListImmutableSortedSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListMutableSortedSet. collectDouble(DoubleFunction<? super T> doubleFunction)DoubleListSortedSetIterable. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleStackImmutableStack. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleStackMutableStack. collectDouble(DoubleFunction<? super T> doubleFunction)DoubleStackStackIterable. 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 DoubleFunction Modifier and Type Method Description DoubleIterableUnmodifiableRichIterable. 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 DoubleFunction Modifier and Type Method Description <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 DoubleFunction Modifier and Type Method Description ImmutableDoubleBagAbstractImmutableBag. collectDouble(DoubleFunction<? super T> doubleFunction)ImmutableDoubleBagImmutableEmptyBag. 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 DoubleFunction Modifier and Type Method Description MutableDoubleBagMultiReaderHashBag. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleBagMultiReaderHashBag.UntouchableMutableBag. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleBagSynchronizedBag. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleBagUnmodifiableBag. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleListAbstractImmutableSortedBag. 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 DoubleFunction Modifier and Type Method Description MutableDoubleListAbstractMutableSortedBag. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListSynchronizedSortedBag. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListUnmodifiableSortedBag. 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 DoubleFunction Modifier and Type Method Description <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 DoubleFunction Modifier and Type Method Description ImmutableDoubleBagAbstractImmutableBiMap. 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 DoubleFunction Modifier and Type Method Description MutableDoubleBagAbstractMutableBiMap. collectDouble(DoubleFunction<? super V> doubleFunction)DoubleIterableUnmodifiableBiMap. 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 DoubleFunction Modifier and Type Field Description private DoubleFunction<T>DoubleFunctionComparator. functionConstructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type DoubleFunction Constructor Description DoubleFunctionComparator(DoubleFunction<T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement DoubleFunction Modifier and Type Class Description static classFunctions.DoubleFunctionChain<T1,T2>private static classFunctions.DoublePassThruFunctionprivate static classPrimitiveFunctions.UnboxDoubleToDoubleprivate static classPrimitiveFunctions.UnboxIntegerToDoubleprivate static classPrimitiveFunctions.UnboxNumberToDoubleprivate static classStringFunctions.ToPrimitiveDoubleFunctionFields in org.eclipse.collections.impl.block.factory declared as DoubleFunction Modifier and Type Field Description private DoubleFunction<? super T>HashingStrategies.DoubleFunctionHashingStrategy. functionprivate DoubleFunction<? super T2>Functions.DoubleFunctionChain. function2private static DoubleFunction<java.lang.String>StringFunctions. TO_PRIMITIVE_DOUBLEMethods in org.eclipse.collections.impl.block.factory that return DoubleFunction Modifier and Type Method Description static DoubleFunction<java.lang.String>StringFunctions. toPrimitiveDouble()static DoubleFunction<java.lang.Double>PrimitiveFunctions. unboxDoubleToDouble()static DoubleFunction<java.lang.Integer>PrimitiveFunctions. unboxIntegerToDouble()static DoubleFunction<java.lang.Number>PrimitiveFunctions. unboxNumberToDouble()Methods in org.eclipse.collections.impl.block.factory with parameters of type DoubleFunction Modifier and Type Method Description static <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.DoubleFunctionChain<T1,T3>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<java.util.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 DoubleFunction Constructor Description DoubleFunctionChain(Function<T1,T2> function1, DoubleFunction<? super T2> function2)DoubleFunctionHashingStrategy(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 DoubleFunction Modifier and Type Class Description classDoubleFunctionImpl<T>DoubleFunctionImpl 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 DoubleFunction Modifier and Type Field Description private DoubleFunction<? super T>SumOfDoubleProcedure. functionConstructors in org.eclipse.collections.impl.block.procedure with parameters of type DoubleFunction Constructor Description SumOfDoubleProcedure(DoubleFunction<? super T> function) -
Uses of DoubleFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as DoubleFunction Modifier and Type Field Description private DoubleFunction<? super T>CollectDoubleProcedure. doubleFunctionConstructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type DoubleFunction Constructor Description CollectDoubleProcedure(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 DoubleFunction Modifier and Type Method Description DoubleIterableAbstractSynchronizedRichIterable. 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 DoubleFunction Modifier and Type Method Description <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 DoubleFunction Modifier and Type Method Description <R extends MutableDoubleCollection>
RAbstractCollectionAdapter. collectDouble(DoubleFunction<? super T> doubleFunction, R target)<R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection. collectDouble(DoubleFunction<? super T> doubleFunction, R target)<R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectDouble(DoubleFunction<? super T> doubleFunction, R target)MutableDoubleCollectionAbstractSynchronizedMutableCollection. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleCollectionAbstractUnmodifiableMutableCollection. 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 DoubleFunction Modifier and Type Method Description static <T,R extends MutableDoubleCollection>
java.util.stream.Collector<T,?,R>Collectors2. collectDouble(DoubleFunction<? super T> function, java.util.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>
java.util.stream.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 DoubleFunction Modifier and Type Method Description LazyDoubleIterableAbstractLazyIterable. 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 DoubleFunction Modifier and Type Method Description DoubleSumResultHolderAbstractBatch. sumOfDouble(DoubleFunction<? super T> function)doubleAbstractMultiReaderParallelIterable. sumOfDouble(DoubleFunction<? super T> function)doubleAbstractParallelIterable. sumOfDouble(DoubleFunction<? super T> function)doubleAbstractSynchronizedParallelIterable. sumOfDouble(DoubleFunction<? super T> function)DoubleSumResultHolderBatch. 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 DoubleFunction Modifier and Type Field Description private DoubleFunction<? super T>CollectDoubleIterable.DoubleFunctionToProcedure. functionprivate DoubleFunction<? super T>CollectDoubleIterable. functionConstructors in org.eclipse.collections.impl.lazy.primitive with parameters of type DoubleFunction Constructor Description CollectDoubleIterable(LazyIterable<T> adapted, DoubleFunction<? super T> function)DoubleFunctionToProcedure(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 DoubleFunction Modifier and Type Method Description MutableList<T>EmptyList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>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 DoubleFunction Modifier and Type Method Description ImmutableDoubleListAbstractImmutableList. collectDouble(DoubleFunction<? super T> doubleFunction)java.util.DoubleSummaryStatisticsImmutableArrayList. 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 DoubleFunction Modifier and Type Method Description <R extends MutableDoubleCollection>
RFastList. collectDouble(DoubleFunction<? super T> doubleFunction, R target)MutableDoubleListMultiReaderFastList. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListMultiReaderFastList.UntouchableMutableList. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListSynchronizedMutableList. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListUnmodifiableMutableList. collectDouble(DoubleFunction<? super T> doubleFunction)MutableList<T>AbstractListAdapter. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByDouble(DoubleFunction<? super T> function)MultiReaderList<T>MultiReaderFastList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>MultiReaderFastList.UntouchableMutableList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>SynchronizedMutableList. sortThisByDouble(DoubleFunction<? super T> function)MutableList<T>UnmodifiableMutableList. sortThisByDouble(DoubleFunction<? super T> function)<V> MutableObjectDoubleMap<V>FastList. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)java.util.DoubleSummaryStatisticsFastList. 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 DoubleFunction Modifier and Type Method Description <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 DoubleFunction Modifier and Type Method Description ImmutableDoubleBagAbstractImmutableMap. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleBagImmutableByteObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableByteObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableByteObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableByteObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableByteObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableByteObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableCharObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableCharObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableCharObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableCharObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableCharObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableCharObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableDoubleObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableDoubleObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableDoubleObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableDoubleObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableDoubleObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableDoubleObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableFloatObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableFloatObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableFloatObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableFloatObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableFloatObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableFloatObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableIntObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableIntObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableIntObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableIntObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableIntObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableIntObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableLongObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableLongObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableLongObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableLongObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableLongObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableLongObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableShortObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableShortObjectEmptyMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableShortObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableShortObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)ImmutableDoubleBagImmutableShortObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RImmutableShortObjectSingletonMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)<T> ImmutableByteDoubleMapImmutableByteDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableCharDoubleMapImmutableCharDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableDoubleBooleanMapImmutableDoubleBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableDoubleByteMapImmutableDoubleByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableDoubleCharMapImmutableDoubleCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableDoubleDoubleMapImmutableDoubleDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableDoubleFloatMapImmutableDoubleFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableDoubleIntMapImmutableDoubleIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableDoubleLongMapImmutableDoubleLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)<T,V>
ImmutableDoubleObjectMap<V>ImmutableDoubleObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)<T> ImmutableDoubleShortMapImmutableDoubleShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableFloatDoubleMapImmutableFloatDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableIntDoubleMapImmutableIntDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableLongDoubleMapImmutableLongDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T,K>
ImmutableObjectDoubleMap<K>ImmutableObjectDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableShortDoubleMapImmutableShortDoubleMapFactoryImpl. from(java.lang.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 DoubleFunction Modifier and Type Method Description MutableDoubleBagAbstractMutableMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagSynchronizedMutableMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagUnmodifiableMutableMap. 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 DoubleFunction Modifier and Type Method Description MutableDoubleBagByteObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagCharObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagDoubleObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagFloatObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagIntObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagLongObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagShortObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleBagSynchronizedByteObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RSynchronizedByteObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagSynchronizedCharObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RSynchronizedCharObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagSynchronizedDoubleObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RSynchronizedDoubleObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagSynchronizedFloatObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RSynchronizedFloatObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagSynchronizedIntObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RSynchronizedIntObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagSynchronizedLongObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RSynchronizedLongObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagSynchronizedShortObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RSynchronizedShortObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagUnmodifiableByteObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RUnmodifiableByteObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagUnmodifiableCharObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RUnmodifiableCharObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagUnmodifiableDoubleObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RUnmodifiableDoubleObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagUnmodifiableFloatObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RUnmodifiableFloatObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagUnmodifiableIntObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RUnmodifiableIntObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagUnmodifiableLongObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RUnmodifiableLongObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)MutableDoubleBagUnmodifiableShortObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction)<R extends MutableDoubleCollection>
RUnmodifiableShortObjectMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)<T> MutableByteDoubleMapMutableByteDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableCharDoubleMapMutableCharDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableDoubleBooleanMapMutableDoubleBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableDoubleByteMapMutableDoubleByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableDoubleCharMapMutableDoubleCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableDoubleDoubleMapMutableDoubleDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableDoubleFloatMapMutableDoubleFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableDoubleLongMapMutableDoubleLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)<T,V>
MutableDoubleObjectMap<V>MutableDoubleObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)<T> MutableDoubleShortMapMutableDoubleShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableFloatDoubleMapMutableFloatDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableIntDoubleMapMutableIntDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableLongDoubleMapMutableLongDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T,K>
MutableObjectDoubleMap<K>MutableObjectDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableShortDoubleMapMutableShortDoubleMapFactoryImpl. from(java.lang.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 DoubleFunction Modifier and Type Method Description ImmutableDoubleListImmutableOrderedMapAdapter. 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 DoubleFunction Modifier and Type Method Description MutableDoubleListOrderedMapAdapter. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleListUnmodifiableMutableOrderedMap. 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)java.util.DoubleSummaryStatisticsUnmodifiableMutableOrderedMap. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleListAbstractImmutableSortedMap. 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 DoubleFunction Modifier and Type Method Description MutableDoubleListAbstractMutableSortedMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleListSynchronizedSortedMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleListUnmodifiableTreeMap. 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 DoubleFunction Modifier and Type Field Description private DoubleFunction<? super T>ParallelIterate.SumByDoubleProcedure. functionMethods in org.eclipse.collections.impl.parallel with parameters of type DoubleFunction Modifier and Type Method Description static <T,V>
ObjectDoubleMap<V>ParallelIterate. sumByDouble(java.lang.Iterable<T> iterable, Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)Constructors in org.eclipse.collections.impl.parallel with parameters of type DoubleFunction Constructor Description SumByDoubleProcedure(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 DoubleFunction Modifier and Type Method Description ImmutableDoubleSetAbstractImmutableSet. 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 DoubleFunction Modifier and Type Method Description MutableDoubleSetMultiReaderUnifiedSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleSetMultiReaderUnifiedSet.UntouchableMutableSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleSetSynchronizedMutableSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleSetUnmodifiableMutableSet. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleListAbstractImmutableSortedSet. 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 DoubleFunction Modifier and Type Method Description MutableDoubleListSortedSetAdapter. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListSynchronizedSortedSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListTreeSortedSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListUnmodifiableSortedSet. 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 DoubleFunction Modifier and Type Method Description ImmutableDoubleStackImmutableArrayStack. collectDouble(DoubleFunction<? super T> doubleFunction)Deprecated.<R extends MutableDoubleCollection>
RImmutableArrayStack. collectDouble(DoubleFunction<? super T> doubleFunction, R target)Deprecated.ImmutableDoubleStackImmutableEmptyStack. collectDouble(DoubleFunction<? super T> doubleFunction)<R extends MutableDoubleCollection>
RImmutableEmptyStack. collectDouble(DoubleFunction<? super T> doubleFunction, R target)ImmutableDoubleStackImmutableNotEmptyStack. 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 DoubleFunction Modifier and Type Method Description MutableDoubleStackArrayStack. collectDouble(DoubleFunction<? super T> doubleFunction)<R extends MutableDoubleCollection>
RArrayStack. collectDouble(DoubleFunction<? super T> doubleFunction, R target)MutableDoubleStackSynchronizedStack. collectDouble(DoubleFunction<? super T> doubleFunction)<R extends MutableDoubleCollection>
RSynchronizedStack. collectDouble(DoubleFunction<? super T> doubleFunction, R target)MutableDoubleStackUnmodifiableStack. 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 DoubleFunction Modifier and Type Method Description static <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(java.util.ArrayList<T> list, DoubleFunction<? super T> doubleFunction)static <T,R extends MutableDoubleCollection>
RArrayListIterate. collectDouble(java.util.ArrayList<T> list, DoubleFunction<? super T> doubleFunction, R target)static <T> MutableDoubleCollectionIterate. collectDouble(java.lang.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(java.lang.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(java.util.List<T> list, DoubleFunction<? super T> doubleFunction)static <T,R extends MutableDoubleCollection>
RListIterate. collectDouble(java.util.List<T> list, DoubleFunction<? super T> doubleFunction, R target)static <K,V>
MutableDoubleCollectionMapIterate. collectDouble(java.util.Map<K,V> map, DoubleFunction<? super V> doubleFunction)static <K,V,R extends MutableDoubleCollection>
RMapIterate. collectDouble(java.util.Map<K,V> map, DoubleFunction<? super V> doubleFunction, R target)private static <T,R extends MutableDoubleCollection>
RArrayListIterate. collectDoubleFromInternalArray(java.util.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(java.lang.Iterable<T> iterable, Function<T,V> groupBy, DoubleFunction<? super T> function)static <V,T>
ObjectDoubleMap<V>ListIterate. sumByDouble(java.util.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(java.lang.Iterable<T> iterable, DoubleFunction<? super T> function)static <T> doubleListIterate. sumOfDouble(java.util.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 DoubleFunction Modifier and Type Method Description static <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(java.lang.Iterable<T> iterable, DoubleFunction<? super T> doubleFunction)static <T,R extends MutableDoubleCollection>
RIterableIterate. collectDouble(java.lang.Iterable<T> iterable, DoubleFunction<? super T> doubleFunction, R target)static <T> MutableDoubleCollectionIteratorIterate. collectDouble(java.util.Iterator<T> iterator, DoubleFunction<? super T> doubleFunction)static <T,R extends MutableDoubleCollection>
RIteratorIterate. collectDouble(java.util.Iterator<T> iterator, DoubleFunction<? super T> doubleFunction, R target)static <T> MutableDoubleListRandomAccessListIterate. collectDouble(java.util.List<T> list, DoubleFunction<? super T> doubleFunction)static <T,R extends MutableDoubleCollection>
RRandomAccessListIterate. collectDouble(java.util.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(java.lang.Iterable<T> iterable, Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)static <V,T>
ObjectDoubleMap<V>RandomAccessListIterate. sumByDouble(java.util.List<T> list, Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)static <T> java.util.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(java.lang.Iterable<T> iterable, DoubleFunction<? super T> function)static <T> doubleIteratorIterate. sumOfDouble(java.util.Iterator<T> iterator, DoubleFunction<? super T> function)static <T> doubleRandomAccessListIterate. sumOfDouble(java.util.List<T> list, DoubleFunction<? super T> function)
-