Uses of Interface
org.eclipse.collections.api.block.function.primitive.FloatFunction
-
Packages that use FloatFunction 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 ofMap
org.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 theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.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 theMutableBiMap
interface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparator
interface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedure
andProcedure2
.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 theImmutableCollection
interface.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.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 theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map This package contains implementations of theMapIterable
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.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 theMutableMap
interface.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.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.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 theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.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 FloatFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type FloatFunction Modifier and Type Method Description LazyFloatIterable
LazyIterable. collectFloat(FloatFunction<? super T> floatFunction)
Returns a lazy FloatIterable which will transform the underlying iterable data to float values based on the floatFunction.FloatIterable
RichIterable. collectFloat(FloatFunction<? super T> floatFunction)
Returns a new primitivefloat
iterable with the results of applying the specified function on each element of the source collection.default <R extends MutableFloatCollection>
RRichIterable. collectFloat(FloatFunction<? super T> floatFunction, R target)
Same asRichIterable.collectFloat(FloatFunction)
, except that the results are gathered into the specifiedtarget
collection.<V> ObjectDoubleMap<V>
RichIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
Groups and sums the values using the two specified functions.default java.util.DoubleSummaryStatistics
RichIterable. summarizeFloat(FloatFunction<? super T> function)
Returns the result of summarizing the value returned from applying the FloatFunction to each element of the iterable.double
ParallelIterable. sumOfFloat(FloatFunction<? super T> function)
Returns the final double result of evaluating function for each element of the iterable in parallel and adding the results together.double
RichIterable. sumOfFloat(FloatFunction<? super T> function)
Returns the final double result of evaluating function for each element of the iterable and adding the results together. -
Uses of FloatFunction in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatBag
ImmutableBag. collectFloat(FloatFunction<? super T> floatFunction)
default MutableFloatBag
MutableBag. collectFloat(FloatFunction<? super T> floatFunction)
FloatBag
UnsortedBag. collectFloat(FloatFunction<? super T> floatFunction)
default java.util.DoubleSummaryStatistics
Bag. summarizeFloat(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatList
ImmutableSortedBag. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatList
MutableSortedBag. collectFloat(FloatFunction<? super T> floatFunction)
FloatList
SortedBag. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatCollection
ImmutableCollection. collectFloat(FloatFunction<? super T> floatFunction)
default MutableFloatCollection
MutableCollection. collectFloat(FloatFunction<? super T> floatFunction)
Returns a new primitivefloat
iterable with the results of applying the specified function on each element of the source collection.<V> ImmutableObjectDoubleMap<V>
ImmutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
MutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type FloatFunction Modifier and Type Method Description <T> ImmutableByteFloatMap
ImmutableByteFloatMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableByteFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharFloatMap
ImmutableCharFloatMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableCharFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableDoubleFloatMap
ImmutableDoubleFloatMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableDoubleFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatByteMap
ImmutableFloatByteMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableFloatByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatCharMap
ImmutableFloatCharMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableFloatDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatFloatMap
ImmutableFloatFloatMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableFloatFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatIntMap
ImmutableFloatIntMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableFloatIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatLongMap
ImmutableFloatLongMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableFloatLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,V>
ImmutableFloatObjectMap<V>ImmutableFloatObjectMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableFloatObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatShortMap
ImmutableFloatShortMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableFloatShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntFloatMap
ImmutableIntFloatMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableIntFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableLongFloatMap
ImmutableLongFloatMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableLongFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,K>
ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableObjectFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortFloatMap
ImmutableShortFloatMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableShortFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteFloatMap
MutableByteFloatMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableByteFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharFloatMap
MutableCharFloatMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableCharFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableDoubleFloatMap
MutableDoubleFloatMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableDoubleFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatBooleanMap
MutableFloatBooleanMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatByteMap
MutableFloatByteMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableFloatByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatCharMap
MutableFloatCharMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatDoubleMap
MutableFloatDoubleMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableFloatDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatFloatMap
MutableFloatFloatMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableFloatFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatIntMap
MutableFloatIntMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableFloatIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatLongMap
MutableFloatLongMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anMutableFloatLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,V>
MutableFloatObjectMap<V>MutableFloatObjectMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anMutableFloatObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatShortMap
MutableFloatShortMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableFloatShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntFloatMap
MutableIntFloatMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableIntFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableLongFloatMap
MutableLongFloatMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableLongFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,K>
MutableObjectFloatMap<K>MutableObjectFloatMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableObjectFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortFloatMap
MutableShortFloatMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableShortFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
. -
Uses of FloatFunction in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatList
ImmutableList. collectFloat(FloatFunction<? super T> floatFunction)
FloatList
ListIterable. collectFloat(FloatFunction<? super T> floatFunction)
default MutableFloatList
MutableList. collectFloat(FloatFunction<? super T> floatFunction)
MultiReaderList<T>
MultiReaderList. sortThisByFloat(FloatFunction<? super T> function)
MutableList<T>
MutableList. sortThisByFloat(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatBag
ImmutableMap. collectFloat(FloatFunction<? super V> floatFunction)
ImmutableFloatList
ImmutableOrderedMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
MutableMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatList
MutableOrderedMap. collectFloat(FloatFunction<? super V> floatFunction)
FloatList
OrderedMap. collectFloat(FloatFunction<? super V> floatFunction)
FloatBag
UnsortedMapIterable. collectFloat(FloatFunction<? super V> floatFunction)
<V1> MutableObjectDoubleMap<V1>
MutableMapIterable. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatBag
ImmutablePrimitiveObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
MutablePrimitiveObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
FloatBag
PrimitiveObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<P> float
MutableByteFloatMap. getIfAbsentPutWith(byte key, FloatFunction<? 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> float
MutableCharFloatMap. getIfAbsentPutWith(char key, FloatFunction<? 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> float
MutableDoubleFloatMap. getIfAbsentPutWith(double key, FloatFunction<? 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> float
MutableFloatFloatMap. getIfAbsentPutWith(float key, FloatFunction<? 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> float
MutableIntFloatMap. getIfAbsentPutWith(int key, FloatFunction<? 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> float
MutableLongFloatMap. getIfAbsentPutWith(long key, FloatFunction<? 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> float
MutableObjectFloatMap. getIfAbsentPutWith(K key, FloatFunction<? 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> float
MutableShortFloatMap. getIfAbsentPutWith(short key, FloatFunction<? 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.float
MutableObjectFloatMap. getIfAbsentPutWithKey(K key, FloatFunction<? 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. sumByFloat(Function<? super V,? extends VV> groupBy, FloatFunction<? super V> function)
<VV> MutableObjectDoubleMap<VV>
MutablePrimitiveObjectMap. sumByFloat(Function<? super V,? extends VV> groupBy, FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatList
ImmutableSortedMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatList
MutableSortedMap. collectFloat(FloatFunction<? super V> floatFunction)
FloatList
SortedMapIterable. collectFloat(FloatFunction<? super V> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type FloatFunction Modifier and Type Method Description OrderedFloatIterable
OrderedIterable. collectFloat(FloatFunction<? super T> floatFunction)
ReversibleFloatIterable
ReversibleIterable. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatSet
ImmutableSet. collectFloat(FloatFunction<? super T> floatFunction)
default MutableFloatSet
MutableSet. collectFloat(FloatFunction<? super T> floatFunction)
FloatSet
UnsortedSetIterable. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatList
ImmutableSortedSet. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatList
MutableSortedSet. collectFloat(FloatFunction<? super T> floatFunction)
FloatList
SortedSetIterable. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatStack
ImmutableStack. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatStack
MutableStack. collectFloat(FloatFunction<? super T> floatFunction)
FloatStack
StackIterable. collectFloat(FloatFunction<? super T> floatFunction)
<V> ImmutableObjectDoubleMap<V>
ImmutableStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
MutableStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type FloatFunction Modifier and Type Method Description FloatIterable
UnmodifiableRichIterable. collectFloat(FloatFunction<? super T> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableRichIterable. collectFloat(FloatFunction<? super T> floatFunction, R target)
<V> ObjectDoubleMap<V>
UnmodifiableRichIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
double
AbstractRichIterable. sumOfFloat(FloatFunction<? super T> function)
double
UnmodifiableRichIterable. sumOfFloat(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type FloatFunction Modifier and Type Method Description <R extends MutableFloatCollection>
RAbstractBag. collectFloat(FloatFunction<? super T> floatFunction, R target)
double
AbstractBag. sumOfFloat(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatBag
AbstractImmutableBag. collectFloat(FloatFunction<? super T> floatFunction)
ImmutableFloatBag
ImmutableEmptyBag. collectFloat(FloatFunction<? super T> floatFunction)
<V> ImmutableObjectDoubleMap<V>
AbstractImmutableBagIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type FloatFunction Modifier and Type Method Description MutableFloatBag
MultiReaderHashBag. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatBag
MultiReaderHashBag.UntouchableMutableBag. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatBag
SynchronizedBag. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatBag
UnmodifiableBag. collectFloat(FloatFunction<? super T> floatFunction)
<V> MutableObjectDoubleMap<V>
AbstractMutableBagIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatList
AbstractImmutableSortedBag. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type FloatFunction Modifier and Type Method Description MutableFloatList
AbstractMutableSortedBag. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatList
SynchronizedSortedBag. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatList
UnmodifiableSortedBag. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type FloatFunction Modifier and Type Method Description <R extends MutableFloatCollection>
RAbstractBiMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
double
AbstractBiMap. sumOfFloat(FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatBag
AbstractImmutableBiMap. collectFloat(FloatFunction<? super V> floatFunction)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableBiMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type FloatFunction Modifier and Type Method Description MutableFloatBag
AbstractMutableBiMap. collectFloat(FloatFunction<? super V> floatFunction)
FloatIterable
UnmodifiableBiMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableBiMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<V1> MutableObjectDoubleMap<V1>
AbstractMutableBiMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableBiMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
double
UnmodifiableBiMap. sumOfFloat(FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.block.comparator.primitive
Fields in org.eclipse.collections.impl.block.comparator.primitive declared as FloatFunction Modifier and Type Field Description private FloatFunction<T>
FloatFunctionComparator. function
Constructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type FloatFunction Constructor Description FloatFunctionComparator(FloatFunction<T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement FloatFunction Modifier and Type Class Description static class
Functions.FloatFunctionChain<T1,T2>
private static class
PrimitiveFunctions.UnboxFloatToFloat
private static class
PrimitiveFunctions.UnboxIntegerToFloat
private static class
PrimitiveFunctions.UnboxNumberToFloat
private static class
StringFunctions.ToPrimitiveFloatFunction
Fields in org.eclipse.collections.impl.block.factory declared as FloatFunction Modifier and Type Field Description private FloatFunction<? super T>
HashingStrategies.FloatFunctionHashingStrategy. function
private FloatFunction<? super T2>
Functions.FloatFunctionChain. function2
private static FloatFunction<java.lang.String>
StringFunctions. TO_PRIMITIVE_FLOAT
Methods in org.eclipse.collections.impl.block.factory that return FloatFunction Modifier and Type Method Description static FloatFunction<java.lang.String>
StringFunctions. toPrimitiveFloat()
static FloatFunction<java.lang.Float>
PrimitiveFunctions. unboxFloatToFloat()
static FloatFunction<java.lang.Integer>
PrimitiveFunctions. unboxIntegerToFloat()
static FloatFunction<java.lang.Number>
PrimitiveFunctions. unboxNumberToFloat()
Methods in org.eclipse.collections.impl.block.factory with parameters of type FloatFunction Modifier and Type Method Description static <T> SerializableComparator<T>
Comparators. byFloatFunction(FloatFunction<T> function)
static <T1,T2>
Functions.FloatFunctionChain<T1,T2>Functions. chainFloat(Function<T1,T2> function1, FloatFunction<? super T2> function2)
Functions.FloatFunctionChain<T1,T3>
Functions.FunctionChain. chainFloat(FloatFunction<? super T3> function)
static <T> HashingStrategy<T>
HashingStrategies. fromFloatFunction(FloatFunction<? super T> function)
static <T,V>
Function2<MutableObjectDoubleMap<V>,T,MutableObjectDoubleMap<V>>PrimitiveFunctions. sumByFloatFunction(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
static <T> Procedure2<java.util.DoubleSummaryStatistics,T>
Procedures2. summarizeFloat(FloatFunction<? super T> function)
static <T> SerializableComparator<T>
Functions. toFloatComparator(FloatFunction<T> function)
Constructors in org.eclipse.collections.impl.block.factory with parameters of type FloatFunction Constructor Description FloatFunctionChain(Function<T1,T2> function1, FloatFunction<? super T2> function2)
FloatFunctionHashingStrategy(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as FloatFunction Modifier and Type Field Description private FloatFunction<? super T>
SumOfFloatProcedure. function
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type FloatFunction Constructor Description SumOfFloatProcedure(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as FloatFunction Modifier and Type Field Description private FloatFunction<? super T>
CollectFloatProcedure. floatFunction
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type FloatFunction Constructor Description CollectFloatProcedure(FloatFunction<? super T> floatFunction, MutableFloatCollection targetCollection)
-
Uses of FloatFunction in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type FloatFunction Modifier and Type Method Description FloatIterable
AbstractSynchronizedRichIterable. collectFloat(FloatFunction<? super T> floatFunction)
<R extends MutableFloatCollection>
RAbstractSynchronizedRichIterable. collectFloat(FloatFunction<? super T> floatFunction, R target)
<V> ObjectDoubleMap<V>
AbstractSynchronizedRichIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
double
AbstractSynchronizedRichIterable. sumOfFloat(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.collection.immutable
Methods in org.eclipse.collections.impl.collection.immutable with parameters of type FloatFunction Modifier and Type Method Description <V> ImmutableObjectDoubleMap<V>
AbstractImmutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type FloatFunction Modifier and Type Method Description <R extends MutableFloatCollection>
RAbstractCollectionAdapter. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RAbstractMultiReaderMutableCollection. collectFloat(FloatFunction<? super T> floatFunction, R target)
<R extends MutableFloatCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectFloat(FloatFunction<? super T> floatFunction, R target)
MutableFloatCollection
AbstractSynchronizedMutableCollection. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatCollection
AbstractUnmodifiableMutableCollection. collectFloat(FloatFunction<? super T> floatFunction)
<R extends MutableFloatCollection>
RAbstractUnmodifiableMutableCollection. collectFloat(FloatFunction<? super T> floatFunction, R target)
<V> MutableObjectDoubleMap<V>
AbstractCollectionAdapter. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractMultiReaderMutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractMutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractSynchronizedMutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractUnmodifiableMutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
double
AbstractCollectionAdapter. sumOfFloat(FloatFunction<? super T> function)
double
AbstractMultiReaderMutableCollection. sumOfFloat(FloatFunction<? super T> function)
double
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. sumOfFloat(FloatFunction<? super T> function)
double
AbstractUnmodifiableMutableCollection. sumOfFloat(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type FloatFunction Modifier and Type Method Description static <T,R extends MutableFloatCollection>
java.util.stream.Collector<T,?,R>Collectors2. collectFloat(FloatFunction<? super T> function, java.util.function.Supplier<R> supplier)
Returns a new MutableFloatCollection with the results of applying the specified FloatFunction on each element of the source.static <T,V>
java.util.stream.Collector<T,?,MutableObjectDoubleMap<V>>Collectors2. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
Groups and sums the values using the two specified functions. -
Uses of FloatFunction in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type FloatFunction Modifier and Type Method Description LazyFloatIterable
AbstractLazyIterable. collectFloat(FloatFunction<? super T> floatFunction)
<V> ObjectDoubleMap<V>
AbstractLazyIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel with parameters of type FloatFunction Modifier and Type Method Description DoubleSumResultHolder
AbstractBatch. sumOfFloat(FloatFunction<? super T> function)
double
AbstractMultiReaderParallelIterable. sumOfFloat(FloatFunction<? super T> function)
double
AbstractParallelIterable. sumOfFloat(FloatFunction<? super T> function)
double
AbstractSynchronizedParallelIterable. sumOfFloat(FloatFunction<? super T> function)
DoubleSumResultHolder
Batch. sumOfFloat(FloatFunction<? super T> function)
double
NonParallelIterable. sumOfFloat(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as FloatFunction Modifier and Type Field Description private FloatFunction<? super T>
CollectFloatIterable.FloatFunctionToProcedure. function
private FloatFunction<? super T>
CollectFloatIterable. function
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type FloatFunction Constructor Description CollectFloatIterable(LazyIterable<T> adapted, FloatFunction<? super T> function)
FloatFunctionToProcedure(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type FloatFunction Modifier and Type Method Description MutableList<T>
EmptyList. sortThisByFloat(FloatFunction<? super T> function)
MutableList<T>
SingletonList. sortThisByFloat(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatList
AbstractImmutableList. collectFloat(FloatFunction<? super T> floatFunction)
java.util.DoubleSummaryStatistics
ImmutableArrayList. summarizeFloat(FloatFunction<? super T> function)
double
AbstractImmutableList. sumOfFloat(FloatFunction<? super T> function)
double
ImmutableArrayList. sumOfFloat(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type FloatFunction Modifier and Type Method Description <R extends MutableFloatCollection>
RFastList. collectFloat(FloatFunction<? super T> floatFunction, R target)
MutableFloatList
MultiReaderFastList. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatList
MultiReaderFastList.UntouchableMutableList. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatList
SynchronizedMutableList. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatList
UnmodifiableMutableList. collectFloat(FloatFunction<? super T> floatFunction)
MutableList<T>
AbstractListAdapter. sortThisByFloat(FloatFunction<? super T> function)
MutableList<T>
AbstractMutableList. sortThisByFloat(FloatFunction<? super T> function)
MultiReaderList<T>
MultiReaderFastList. sortThisByFloat(FloatFunction<? super T> function)
MutableList<T>
MultiReaderFastList.UntouchableMutableList. sortThisByFloat(FloatFunction<? super T> function)
MutableList<T>
SynchronizedMutableList. sortThisByFloat(FloatFunction<? super T> function)
MutableList<T>
UnmodifiableMutableList. sortThisByFloat(FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
FastList. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
java.util.DoubleSummaryStatistics
FastList. summarizeFloat(FloatFunction<? super T> function)
double
AbstractMutableList. sumOfFloat(FloatFunction<? super T> function)
double
FastList. sumOfFloat(FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type FloatFunction Modifier and Type Method Description <V1> MutableObjectDoubleMap<V1>
AbstractSynchronizedMapIterable. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatBag
AbstractImmutableMap. collectFloat(FloatFunction<? super V> floatFunction)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatBag
ImmutableByteObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableByteObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableByteObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableByteObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableByteObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableByteObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableCharObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableCharObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableCharObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableCharObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableCharObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableCharObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableDoubleObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableDoubleObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableDoubleObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableDoubleObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableDoubleObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableDoubleObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableFloatObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableFloatObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableFloatObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableFloatObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableFloatObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableFloatObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableIntObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableIntObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableIntObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableIntObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableIntObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableIntObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableLongObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableLongObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableLongObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableLongObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableLongObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableLongObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableShortObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableShortObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableShortObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableShortObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
ImmutableFloatBag
ImmutableShortObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RImmutableShortObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<T> ImmutableByteFloatMap
ImmutableByteFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> ImmutableCharFloatMap
ImmutableCharFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> ImmutableDoubleFloatMap
ImmutableDoubleFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> ImmutableFloatByteMap
ImmutableFloatByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> ImmutableFloatCharMap
ImmutableFloatCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
<T> ImmutableFloatFloatMap
ImmutableFloatFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> ImmutableFloatIntMap
ImmutableFloatIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> ImmutableFloatLongMap
ImmutableFloatLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
<T,V>
ImmutableFloatObjectMap<V>ImmutableFloatObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<T> ImmutableFloatShortMap
ImmutableFloatShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> ImmutableIntFloatMap
ImmutableIntFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> ImmutableLongFloatMap
ImmutableLongFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T,K>
ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)
<T> ImmutableShortFloatMap
ImmutableShortFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableByteObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableCharObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableDoubleObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableFloatObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableIntObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableLongObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableShortObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableByteObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableCharObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableDoubleObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableFloatObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableIntObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableLongObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> ImmutableObjectDoubleMap<V1>
ImmutableShortObjectEmptyMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
double
ImmutableByteObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableByteObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableByteObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableCharObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableCharObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableCharObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableDoubleObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableDoubleObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableDoubleObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableFloatObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableFloatObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableFloatObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableIntObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableIntObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableIntObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableLongObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableLongObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableLongObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableShortObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableShortObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
ImmutableShortObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type FloatFunction Modifier and Type Method Description MutableFloatBag
AbstractMutableMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
SynchronizedMutableMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
UnmodifiableMutableMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableMutableMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<V1> MutableObjectDoubleMap<V1>
AbstractMutableMapIterable. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableMutableMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
double
UnmodifiableMutableMap. sumOfFloat(FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type FloatFunction Modifier and Type Method Description MutableFloatBag
ByteObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
CharObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
DoubleObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
FloatObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
IntObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
LongObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
ShortObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatBag
SynchronizedByteObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RSynchronizedByteObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
SynchronizedCharObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RSynchronizedCharObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
SynchronizedDoubleObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RSynchronizedDoubleObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
SynchronizedFloatObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RSynchronizedFloatObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
SynchronizedIntObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RSynchronizedIntObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
SynchronizedLongObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RSynchronizedLongObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
SynchronizedShortObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RSynchronizedShortObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
UnmodifiableByteObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableByteObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
UnmodifiableCharObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableCharObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
UnmodifiableDoubleObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableDoubleObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
UnmodifiableFloatObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableFloatObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
UnmodifiableIntObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableIntObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
UnmodifiableLongObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableLongObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
MutableFloatBag
UnmodifiableShortObjectMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableShortObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<T> MutableByteFloatMap
MutableByteFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> MutableCharFloatMap
MutableCharFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> MutableDoubleFloatMap
MutableDoubleFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> MutableFloatBooleanMap
MutableFloatBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> MutableFloatByteMap
MutableFloatByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> MutableFloatCharMap
MutableFloatCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> MutableFloatDoubleMap
MutableFloatDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
<T> MutableFloatFloatMap
MutableFloatFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> MutableFloatIntMap
MutableFloatIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> MutableFloatLongMap
MutableFloatLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
<T,V>
MutableFloatObjectMap<V>MutableFloatObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<T> MutableFloatShortMap
MutableFloatShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> MutableIntFloatMap
MutableIntFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> MutableLongFloatMap
MutableLongFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T,K>
MutableObjectFloatMap<K>MutableObjectFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)
<T> MutableShortFloatMap
MutableShortFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<P> float
ByteFloatHashMap. getIfAbsentPutWith(byte key, FloatFunction<? super P> function, P parameter)
<P> float
CharFloatHashMap. getIfAbsentPutWith(char key, FloatFunction<? super P> function, P parameter)
<P> float
DoubleFloatHashMap. getIfAbsentPutWith(double key, FloatFunction<? super P> function, P parameter)
<P> float
FloatFloatHashMap. getIfAbsentPutWith(float key, FloatFunction<? super P> function, P parameter)
<P> float
IntFloatHashMap. getIfAbsentPutWith(int key, FloatFunction<? super P> function, P parameter)
<P> float
LongFloatHashMap. getIfAbsentPutWith(long key, FloatFunction<? super P> function, P parameter)
<P> float
ObjectFloatHashMap. getIfAbsentPutWith(K key, FloatFunction<? super P> function, P parameter)
<P> float
ObjectFloatHashMapWithHashingStrategy. getIfAbsentPutWith(K key, FloatFunction<? super P> function, P parameter)
<P> float
ShortFloatHashMap. getIfAbsentPutWith(short key, FloatFunction<? super P> function, P parameter)
<P> float
SynchronizedByteFloatMap. getIfAbsentPutWith(byte key, FloatFunction<? super P> function, P parameter)
<P> float
SynchronizedCharFloatMap. getIfAbsentPutWith(char key, FloatFunction<? super P> function, P parameter)
<P> float
SynchronizedDoubleFloatMap. getIfAbsentPutWith(double key, FloatFunction<? super P> function, P parameter)
<P> float
SynchronizedFloatFloatMap. getIfAbsentPutWith(float key, FloatFunction<? super P> function, P parameter)
<P> float
SynchronizedIntFloatMap. getIfAbsentPutWith(int key, FloatFunction<? super P> function, P parameter)
<P> float
SynchronizedLongFloatMap. getIfAbsentPutWith(long key, FloatFunction<? super P> function, P parameter)
<P> float
SynchronizedObjectFloatMap. getIfAbsentPutWith(K key, FloatFunction<? super P> function, P parameter)
<P> float
SynchronizedShortFloatMap. getIfAbsentPutWith(short key, FloatFunction<? super P> function, P parameter)
<P> float
UnmodifiableByteFloatMap. getIfAbsentPutWith(byte key, FloatFunction<? super P> function, P parameter)
<P> float
UnmodifiableCharFloatMap. getIfAbsentPutWith(char key, FloatFunction<? super P> function, P parameter)
<P> float
UnmodifiableDoubleFloatMap. getIfAbsentPutWith(double key, FloatFunction<? super P> function, P parameter)
<P> float
UnmodifiableFloatFloatMap. getIfAbsentPutWith(float key, FloatFunction<? super P> function, P parameter)
<P> float
UnmodifiableIntFloatMap. getIfAbsentPutWith(int key, FloatFunction<? super P> function, P parameter)
<P> float
UnmodifiableLongFloatMap. getIfAbsentPutWith(long key, FloatFunction<? super P> function, P parameter)
<P> float
UnmodifiableObjectFloatMap. getIfAbsentPutWith(K key, FloatFunction<? super P> function, P parameter)
<P> float
UnmodifiableShortFloatMap. getIfAbsentPutWith(short key, FloatFunction<? super P> function, P parameter)
float
ObjectFloatHashMap. getIfAbsentPutWithKey(K key, FloatFunction<? super K> function)
float
ObjectFloatHashMapWithHashingStrategy. getIfAbsentPutWithKey(K key, FloatFunction<? super K> function)
float
SynchronizedObjectFloatMap. getIfAbsentPutWithKey(K key, FloatFunction<? super K> function)
float
UnmodifiableObjectFloatMap. getIfAbsentPutWithKey(K key, FloatFunction<? super K> function)
<V1> MutableObjectDoubleMap<V1>
ByteObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
CharObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
DoubleObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
FloatObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
IntObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
LongObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
ShortObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedByteObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedCharObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedDoubleObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedFloatObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedIntObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedLongObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedShortObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableByteObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableCharObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableDoubleObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableFloatObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableIntObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableLongObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableShortObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
double
ByteObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
CharObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
DoubleObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
FloatObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
IntObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
LongObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
ShortObjectHashMap. sumOfFloat(FloatFunction<? super V> function)
double
SynchronizedByteObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
SynchronizedCharObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
SynchronizedDoubleObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
SynchronizedFloatObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
SynchronizedIntObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
SynchronizedLongObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
SynchronizedShortObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
UnmodifiableByteObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
UnmodifiableCharObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
UnmodifiableDoubleObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
UnmodifiableFloatObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
UnmodifiableIntObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
UnmodifiableLongObjectMap. sumOfFloat(FloatFunction<? super V> function)
double
UnmodifiableShortObjectMap. sumOfFloat(FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type FloatFunction Modifier and Type Method Description MutableFloatList
OrderedMapAdapter. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatList
UnmodifiableMutableOrderedMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableMutableOrderedMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<V1> MutableObjectDoubleMap<V1>
OrderedMapAdapter. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<VV> MutableObjectDoubleMap<VV>
UnmodifiableMutableOrderedMap. sumByFloat(Function<? super V,? extends VV> groupBy, FloatFunction<? super V> function)
java.util.DoubleSummaryStatistics
UnmodifiableMutableOrderedMap. summarizeFloat(FloatFunction<? super V> function)
double
UnmodifiableMutableOrderedMap. sumOfFloat(FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatList
AbstractImmutableSortedMap. collectFloat(FloatFunction<? super V> floatFunction)
<V1> ImmutableObjectDoubleMap<V1>
AbstractImmutableSortedMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type FloatFunction Modifier and Type Method Description MutableFloatList
AbstractMutableSortedMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatList
SynchronizedSortedMap. collectFloat(FloatFunction<? super V> floatFunction)
MutableFloatList
UnmodifiableTreeMap. collectFloat(FloatFunction<? super V> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableTreeMap. collectFloat(FloatFunction<? super V> floatFunction, R target)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableTreeMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
double
UnmodifiableTreeMap. sumOfFloat(FloatFunction<? super V> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.parallel
Fields in org.eclipse.collections.impl.parallel declared as FloatFunction Modifier and Type Field Description private FloatFunction<? super T>
ParallelIterate.SumByFloatProcedure. function
Methods in org.eclipse.collections.impl.parallel with parameters of type FloatFunction Modifier and Type Method Description static <T,V>
ObjectDoubleMap<V>ParallelIterate. sumByFloat(java.lang.Iterable<T> iterable, Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
Constructors in org.eclipse.collections.impl.parallel with parameters of type FloatFunction Constructor Description SumByFloatProcedure(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatSet
AbstractImmutableSet. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type FloatFunction Modifier and Type Method Description MutableFloatSet
MultiReaderUnifiedSet. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatSet
MultiReaderUnifiedSet.UntouchableMutableSet. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatSet
SynchronizedMutableSet. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatSet
UnmodifiableMutableSet. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatList
AbstractImmutableSortedSet. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type FloatFunction Modifier and Type Method Description MutableFloatList
SortedSetAdapter. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatList
SynchronizedSortedSet. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatList
TreeSortedSet. collectFloat(FloatFunction<? super T> floatFunction)
MutableFloatList
UnmodifiableSortedSet. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatStack
ImmutableArrayStack. collectFloat(FloatFunction<? super T> floatFunction)
Deprecated.<R extends MutableFloatCollection>
RImmutableArrayStack. collectFloat(FloatFunction<? super T> floatFunction, R target)
Deprecated.ImmutableFloatStack
ImmutableEmptyStack. collectFloat(FloatFunction<? super T> floatFunction)
<R extends MutableFloatCollection>
RImmutableEmptyStack. collectFloat(FloatFunction<? super T> floatFunction, R target)
ImmutableFloatStack
ImmutableNotEmptyStack. collectFloat(FloatFunction<? super T> function)
<V> ImmutableObjectDoubleMap<V>
ImmutableArrayStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
Deprecated.<V> ImmutableObjectDoubleMap<V>
ImmutableEmptyStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> ImmutableObjectDoubleMap<V>
ImmutableNotEmptyStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
double
ImmutableArrayStack. sumOfFloat(FloatFunction<? super T> floatFunction)
Deprecated. -
Uses of FloatFunction in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type FloatFunction Modifier and Type Method Description MutableFloatStack
ArrayStack. collectFloat(FloatFunction<? super T> floatFunction)
<R extends MutableFloatCollection>
RArrayStack. collectFloat(FloatFunction<? super T> floatFunction, R target)
MutableFloatStack
SynchronizedStack. collectFloat(FloatFunction<? super T> floatFunction)
<R extends MutableFloatCollection>
RSynchronizedStack. collectFloat(FloatFunction<? super T> floatFunction, R target)
MutableFloatStack
UnmodifiableStack. collectFloat(FloatFunction<? super T> floatFunction)
<R extends MutableFloatCollection>
RUnmodifiableStack. collectFloat(FloatFunction<? super T> floatFunction, R target)
<V> MutableObjectDoubleMap<V>
ArrayStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
SynchronizedStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
UnmodifiableStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
double
ArrayStack. sumOfFloat(FloatFunction<? super T> floatFunction)
double
SynchronizedStack. sumOfFloat(FloatFunction<? super T> floatFunction)
double
UnmodifiableStack. sumOfFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatFunction in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type FloatFunction Modifier and Type Method Description static <T> MutableFloatList
ArrayIterate. collectFloat(T[] objectArray, FloatFunction<? super T> floatFunction)
static <T,R extends MutableFloatCollection>
RArrayIterate. collectFloat(T[] objectArray, FloatFunction<? super T> floatFunction, R target)
static <T> MutableFloatList
ArrayListIterate. collectFloat(java.util.ArrayList<T> list, FloatFunction<? super T> floatFunction)
static <T,R extends MutableFloatCollection>
RArrayListIterate. collectFloat(java.util.ArrayList<T> list, FloatFunction<? super T> floatFunction, R target)
static <T> MutableFloatCollection
Iterate. collectFloat(java.lang.Iterable<T> iterable, FloatFunction<? super T> floatFunction)
Returns a newfloat
collection with the results of applying the specified floatFunction for each element of the iterable.static <T,R extends MutableFloatCollection>
RIterate. collectFloat(java.lang.Iterable<T> iterable, FloatFunction<? super T> floatFunction, R target)
Same asIterate.collectFloat(Iterable, FloatFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T> MutableFloatList
ListIterate. collectFloat(java.util.List<T> list, FloatFunction<? super T> floatFunction)
static <T,R extends MutableFloatCollection>
RListIterate. collectFloat(java.util.List<T> list, FloatFunction<? super T> floatFunction, R target)
static <K,V>
MutableFloatCollectionMapIterate. collectFloat(java.util.Map<K,V> map, FloatFunction<? super V> floatFunction)
static <K,V,R extends MutableFloatCollection>
RMapIterate. collectFloat(java.util.Map<K,V> map, FloatFunction<? super V> floatFunction, R target)
private static <T,R extends MutableFloatCollection>
RArrayListIterate. collectFloatFromInternalArray(java.util.ArrayList<T> source, FloatFunction<? super T> floatFunction, int elementsToCollect, R target)
static <V,T>
ObjectDoubleMap<V>ArrayIterate. sumByFloat(T[] array, Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
static <T,V>
ObjectDoubleMap<V>Iterate. sumByFloat(java.lang.Iterable<T> iterable, Function<T,V> groupBy, FloatFunction<? super T> function)
static <V,T>
ObjectDoubleMap<V>ListIterate. sumByFloat(java.util.List<T> list, Function<T,V> groupBy, FloatFunction<? super T> function)
static <T> double
ArrayIterate. sumOfFloat(T[] array, FloatFunction<? super T> function)
static <T> double
Iterate. sumOfFloat(java.lang.Iterable<T> iterable, FloatFunction<? super T> function)
static <T> double
ListIterate. sumOfFloat(java.util.List<T> list, FloatFunction<? super T> function)
-
Uses of FloatFunction in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type FloatFunction Modifier and Type Method Description static <T> MutableFloatCollection
IterableIterate. collectFloat(java.lang.Iterable<T> iterable, FloatFunction<? super T> floatFunction)
static <T,R extends MutableFloatCollection>
RIterableIterate. collectFloat(java.lang.Iterable<T> iterable, FloatFunction<? super T> floatFunction, R target)
static <T> MutableFloatCollection
IteratorIterate. collectFloat(java.util.Iterator<T> iterator, FloatFunction<? super T> floatFunction)
static <T,R extends MutableFloatCollection>
RIteratorIterate. collectFloat(java.util.Iterator<T> iterator, FloatFunction<? super T> floatFunction, R target)
static <T> MutableFloatList
RandomAccessListIterate. collectFloat(java.util.List<T> list, FloatFunction<? super T> floatFunction)
static <T,R extends MutableFloatCollection>
RRandomAccessListIterate. collectFloat(java.util.List<T> list, FloatFunction<? super T> floatFunction, R target)
static <V,T>
MutableObjectDoubleMap<V>InternalArrayIterate. sumByFloat(T[] array, int size, Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
static <V,T>
ObjectDoubleMap<V>IterableIterate. sumByFloat(java.lang.Iterable<T> iterable, Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
static <V,T>
ObjectDoubleMap<V>RandomAccessListIterate. sumByFloat(java.util.List<T> list, Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
static <T> java.util.DoubleSummaryStatistics
InternalArrayIterate. summarizeFloat(T[] items, int size, FloatFunction<? super T> function)
static <T> double
InternalArrayIterate. sumOfFloat(T[] array, int size, FloatFunction<? super T> function)
static <T> double
IterableIterate. sumOfFloat(java.lang.Iterable<T> iterable, FloatFunction<? super T> function)
static <T> double
IteratorIterate. sumOfFloat(java.util.Iterator<T> iterator, FloatFunction<? super T> function)
static <T> double
RandomAccessListIterate. sumOfFloat(java.util.List<T> list, FloatFunction<? super T> function)
-