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. -
-
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 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 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(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharDoubleMapImmutableCharDoubleMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleBooleanMapImmutableDoubleBooleanMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleByteMapImmutableDoubleByteMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleCharMapImmutableDoubleCharMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleDoubleMapImmutableDoubleDoubleMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleFloatMapImmutableDoubleFloatMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleIntMapImmutableDoubleIntMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleLongMapImmutableDoubleLongMapFactory. 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.<T> ImmutableDoubleShortMapImmutableDoubleShortMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatDoubleMapImmutableFloatDoubleMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntDoubleMapImmutableIntDoubleMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableLongDoubleMapImmutableLongDoubleMapFactory. 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.<T> ImmutableShortDoubleMapImmutableShortDoubleMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableShortDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteDoubleMapMutableByteDoubleMapFactory. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharDoubleMapMutableCharDoubleMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleByteMapMutableDoubleByteMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleCharMapMutableDoubleCharMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleDoubleMapMutableDoubleDoubleMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleFloatMapMutableDoubleFloatMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleIntMapMutableDoubleIntMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleLongMapMutableDoubleLongMapFactory. 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.<T> MutableDoubleShortMapMutableDoubleShortMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatDoubleMapMutableFloatDoubleMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntDoubleMapMutableIntDoubleMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableLongDoubleMapMutableLongDoubleMapFactory. 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.<T> MutableShortDoubleMapMutableShortDoubleMapFactory. 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 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)<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)
-