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 ofMaporg.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBaginterface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMapinterface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparatorinterface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction,Predicate,SerializableComparatorandProcedure.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedureandProcedure2.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.immutable This package contains implementations of theImmutableCollectioninterface.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeListinterface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.map This package contains implementations of theMapIterableinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.immutable org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of FloatFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type FloatFunction Modifier and Type Method Description LazyFloatIterableLazyIterable. collectFloat(FloatFunction<? super T> floatFunction)Returns a lazy FloatIterable which will transform the underlying iterable data to float values based on the floatFunction.FloatIterableRichIterable. collectFloat(FloatFunction<? super T> floatFunction)Returns a new primitivefloatiterable 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 specifiedtargetcollection.<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.DoubleSummaryStatisticsRichIterable. summarizeFloat(FloatFunction<? super T> function)Returns the result of summarizing the value returned from applying the FloatFunction to each element of the iterable.doubleParallelIterable. 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.doubleRichIterable. 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 ImmutableFloatBagImmutableBag. collectFloat(FloatFunction<? super T> floatFunction)default MutableFloatBagMutableBag. collectFloat(FloatFunction<? super T> floatFunction)FloatBagUnsortedBag. collectFloat(FloatFunction<? super T> floatFunction)default java.util.DoubleSummaryStatisticsBag. 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 ImmutableFloatListImmutableSortedBag. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatListMutableSortedBag. collectFloat(FloatFunction<? super T> floatFunction)FloatListSortedBag. 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 ImmutableFloatCollectionImmutableCollection. collectFloat(FloatFunction<? super T> floatFunction)default MutableFloatCollectionMutableCollection. collectFloat(FloatFunction<? super T> floatFunction)Returns a new primitivefloatiterable 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> ImmutableByteFloatMapImmutableByteFloatMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableByteFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharFloatMapImmutableCharFloatMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleFloatMapImmutableDoubleFloatMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatBooleanMapImmutableFloatBooleanMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatByteMapImmutableFloatByteMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatCharMapImmutableFloatCharMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatDoubleMapImmutableFloatDoubleMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatFloatMapImmutableFloatFloatMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableFloatFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatIntMapImmutableFloatIntMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatLongMapImmutableFloatLongMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V>
ImmutableFloatObjectMap<V>ImmutableFloatObjectMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anImmutableFloatObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatShortMapImmutableFloatShortMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntFloatMapImmutableIntFloatMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableLongFloatMapImmutableLongFloatMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableLongFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableObjectFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortFloatMapImmutableShortFloatMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableShortFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteFloatMapMutableByteFloatMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableByteFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharFloatMapMutableCharFloatMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleFloatMapMutableDoubleFloatMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatBooleanMapMutableFloatBooleanMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatByteMapMutableFloatByteMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatCharMapMutableFloatCharMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatDoubleMapMutableFloatDoubleMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatFloatMapMutableFloatFloatMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableFloatFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatIntMapMutableFloatIntMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatLongMapMutableFloatLongMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V>
MutableFloatObjectMap<V>MutableFloatObjectMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anMutableFloatObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatShortMapMutableFloatShortMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntFloatMapMutableIntFloatMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableLongFloatMapMutableLongFloatMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableLongFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
MutableObjectFloatMap<K>MutableObjectFloatMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableObjectFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortFloatMapMutableShortFloatMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableShortFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction. -
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 ImmutableFloatListImmutableList. collectFloat(FloatFunction<? super T> floatFunction)FloatListListIterable. collectFloat(FloatFunction<? super T> floatFunction)default MutableFloatListMutableList. 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 ImmutableFloatBagImmutableMap. collectFloat(FloatFunction<? super V> floatFunction)ImmutableFloatListImmutableOrderedMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagMutableMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatListMutableOrderedMap. collectFloat(FloatFunction<? super V> floatFunction)FloatListOrderedMap. collectFloat(FloatFunction<? super V> floatFunction)FloatBagUnsortedMapIterable. collectFloat(FloatFunction<? super V> floatFunction)<VV> ImmutableObjectDoubleMap<VV>ImmutableOrderedMap. sumByFloat(Function<? super V,? extends VV> groupBy, FloatFunction<? super V> function)<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 ImmutableFloatBagImmutablePrimitiveObjectMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagMutablePrimitiveObjectMap. collectFloat(FloatFunction<? super V> floatFunction)FloatBagPrimitiveObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<P> floatMutableByteFloatMap. 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> floatMutableCharFloatMap. 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> floatMutableDoubleFloatMap. 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> floatMutableFloatFloatMap. 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> floatMutableIntFloatMap. 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> floatMutableLongFloatMap. 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> floatMutableObjectFloatMap. 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> floatMutableShortFloatMap. 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.floatMutableObjectFloatMap. 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 ImmutableFloatListImmutableSortedMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatListMutableSortedMap. collectFloat(FloatFunction<? super V> floatFunction)FloatListSortedMapIterable. 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 OrderedFloatIterableOrderedIterable. collectFloat(FloatFunction<? super T> floatFunction)ReversibleFloatIterableReversibleIterable. 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 ImmutableFloatSetImmutableSet. collectFloat(FloatFunction<? super T> floatFunction)default MutableFloatSetMutableSet. collectFloat(FloatFunction<? super T> floatFunction)FloatSetUnsortedSetIterable. 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 ImmutableFloatListImmutableSortedSet. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatListMutableSortedSet. collectFloat(FloatFunction<? super T> floatFunction)FloatListSortedSetIterable. 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 ImmutableFloatStackImmutableStack. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatStackMutableStack. collectFloat(FloatFunction<? super T> floatFunction)FloatStackStackIterable. 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 FloatIterableUnmodifiableRichIterable. 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)doubleAbstractRichIterable. sumOfFloat(FloatFunction<? super T> function)doubleUnmodifiableRichIterable. 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)doubleAbstractBag. 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 ImmutableFloatBagAbstractImmutableBag. collectFloat(FloatFunction<? super T> floatFunction)ImmutableFloatBagImmutableEmptyBag. 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 MutableFloatBagMultiReaderHashBag. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatBagMultiReaderHashBag.UntouchableMutableBag. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatBagSynchronizedBag. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatBagUnmodifiableBag. 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 ImmutableFloatListAbstractImmutableSortedBag. 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 MutableFloatListAbstractMutableSortedBag. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatListSynchronizedSortedBag. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatListUnmodifiableSortedBag. 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)doubleAbstractBiMap. 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 ImmutableFloatBagAbstractImmutableBiMap. 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 MutableFloatBagAbstractMutableBiMap. collectFloat(FloatFunction<? super V> floatFunction)FloatIterableUnmodifiableBiMap. 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)doubleUnmodifiableBiMap. 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. functionConstructors 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 classFunctions.FloatFunctionChain<T1,T2>private static classPrimitiveFunctions.UnboxFloatToFloatprivate static classPrimitiveFunctions.UnboxIntegerToFloatprivate static classPrimitiveFunctions.UnboxNumberToFloatprivate static classStringFunctions.ToPrimitiveFloatFunctionFields in org.eclipse.collections.impl.block.factory declared as FloatFunction Modifier and Type Field Description private FloatFunction<? super T>HashingStrategies.FloatFunctionHashingStrategy. functionprivate FloatFunction<? super T2>Functions.FloatFunctionChain. function2private static FloatFunction<java.lang.String>StringFunctions. TO_PRIMITIVE_FLOATMethods 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. functionConstructors 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. floatFunctionConstructors 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 FloatIterableAbstractSynchronizedRichIterable. 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)doubleAbstractSynchronizedRichIterable. 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)MutableFloatCollectionAbstractSynchronizedMutableCollection. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatCollectionAbstractUnmodifiableMutableCollection. 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)doubleAbstractCollectionAdapter. sumOfFloat(FloatFunction<? super T> function)doubleAbstractMultiReaderMutableCollection. sumOfFloat(FloatFunction<? super T> function)doubleAbstractMultiReaderMutableCollection.UntouchableMutableCollection. sumOfFloat(FloatFunction<? super T> function)doubleAbstractUnmodifiableMutableCollection. 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 LazyFloatIterableAbstractLazyIterable. 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 DoubleSumResultHolderAbstractBatch. sumOfFloat(FloatFunction<? super T> function)doubleAbstractMultiReaderParallelIterable. sumOfFloat(FloatFunction<? super T> function)doubleAbstractParallelIterable. sumOfFloat(FloatFunction<? super T> function)doubleAbstractSynchronizedParallelIterable. sumOfFloat(FloatFunction<? super T> function)DoubleSumResultHolderBatch. sumOfFloat(FloatFunction<? super T> function)doubleNonParallelIterable. 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. functionprivate FloatFunction<? super T>CollectFloatIterable. functionConstructors 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 ImmutableFloatListAbstractImmutableList. collectFloat(FloatFunction<? super T> floatFunction)java.util.DoubleSummaryStatisticsImmutableArrayList. summarizeFloat(FloatFunction<? super T> function)doubleAbstractImmutableList. sumOfFloat(FloatFunction<? super T> function)doubleImmutableArrayList. 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)MutableFloatListMultiReaderFastList. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatListMultiReaderFastList.UntouchableMutableList. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatListSynchronizedMutableList. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatListUnmodifiableMutableList. 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.DoubleSummaryStatisticsFastList. summarizeFloat(FloatFunction<? super T> function)doubleAbstractMutableList. sumOfFloat(FloatFunction<? super T> function)doubleFastList. 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 ImmutableFloatBagAbstractImmutableMap. 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 ImmutableFloatBagImmutableByteObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableByteObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableByteObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableByteObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableByteObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableByteObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableCharObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableCharObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableCharObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableCharObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableCharObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableCharObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableDoubleObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableDoubleObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableDoubleObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableDoubleObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableDoubleObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableDoubleObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableFloatObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableFloatObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableFloatObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableFloatObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableFloatObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableFloatObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableIntObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableIntObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableIntObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableIntObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableIntObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableIntObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableLongObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableLongObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableLongObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableLongObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableLongObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableLongObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableShortObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableShortObjectEmptyMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableShortObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableShortObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction, R target)ImmutableFloatBagImmutableShortObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RImmutableShortObjectSingletonMap. collectFloat(FloatFunction<? super V> floatFunction, R target)<T> ImmutableByteFloatMapImmutableByteFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableCharFloatMapImmutableCharFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableDoubleFloatMapImmutableDoubleFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableFloatBooleanMapImmutableFloatBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableFloatByteMapImmutableFloatByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableFloatCharMapImmutableFloatCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableFloatDoubleMapImmutableFloatDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableFloatFloatMapImmutableFloatFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableFloatIntMapImmutableFloatIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableFloatLongMapImmutableFloatLongMapFactoryImpl. 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> ImmutableFloatShortMapImmutableFloatShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableIntFloatMapImmutableIntFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableLongFloatMapImmutableLongFloatMapFactoryImpl. 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> ImmutableShortFloatMapImmutableShortFloatMapFactoryImpl. 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)doubleImmutableByteObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableByteObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableByteObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableCharObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableCharObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableCharObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableDoubleObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableDoubleObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableDoubleObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableFloatObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableFloatObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableFloatObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableIntObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableIntObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableIntObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableLongObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableLongObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableLongObjectSingletonMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableShortObjectEmptyMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableShortObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleImmutableShortObjectSingletonMap. 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 MutableFloatBagAbstractMutableMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagSynchronizedMutableMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagUnmodifiableMutableMap. 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)doubleUnmodifiableMutableMap. 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 MutableFloatBagByteObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagCharObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagDoubleObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagFloatObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagIntObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagLongObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagShortObjectHashMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatBagSynchronizedByteObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RSynchronizedByteObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagSynchronizedCharObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RSynchronizedCharObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagSynchronizedDoubleObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RSynchronizedDoubleObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagSynchronizedFloatObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RSynchronizedFloatObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagSynchronizedIntObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RSynchronizedIntObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagSynchronizedLongObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RSynchronizedLongObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagSynchronizedShortObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RSynchronizedShortObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagUnmodifiableByteObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RUnmodifiableByteObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagUnmodifiableCharObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RUnmodifiableCharObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagUnmodifiableDoubleObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RUnmodifiableDoubleObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagUnmodifiableFloatObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RUnmodifiableFloatObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagUnmodifiableIntObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RUnmodifiableIntObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagUnmodifiableLongObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RUnmodifiableLongObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)MutableFloatBagUnmodifiableShortObjectMap. collectFloat(FloatFunction<? super V> floatFunction)<R extends MutableFloatCollection>
RUnmodifiableShortObjectMap. collectFloat(FloatFunction<? super V> floatFunction, R target)<T> MutableByteFloatMapMutableByteFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableCharFloatMapMutableCharFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableDoubleFloatMapMutableDoubleFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableFloatBooleanMapMutableFloatBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableFloatByteMapMutableFloatByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableFloatCharMapMutableFloatCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableFloatDoubleMapMutableFloatDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableFloatFloatMapMutableFloatFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableFloatIntMapMutableFloatIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableFloatLongMapMutableFloatLongMapFactoryImpl. 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> MutableFloatShortMapMutableFloatShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableIntFloatMapMutableIntFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableLongFloatMapMutableLongFloatMapFactoryImpl. 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> MutableShortFloatMapMutableShortFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<P> floatByteFloatHashMap. getIfAbsentPutWith(byte key, FloatFunction<? super P> function, P parameter)<P> floatCharFloatHashMap. getIfAbsentPutWith(char key, FloatFunction<? super P> function, P parameter)<P> floatDoubleFloatHashMap. getIfAbsentPutWith(double key, FloatFunction<? super P> function, P parameter)<P> floatFloatFloatHashMap. getIfAbsentPutWith(float key, FloatFunction<? super P> function, P parameter)<P> floatIntFloatHashMap. getIfAbsentPutWith(int key, FloatFunction<? super P> function, P parameter)<P> floatLongFloatHashMap. getIfAbsentPutWith(long key, FloatFunction<? super P> function, P parameter)<P> floatObjectFloatHashMap. getIfAbsentPutWith(K key, FloatFunction<? super P> function, P parameter)<P> floatObjectFloatHashMapWithHashingStrategy. getIfAbsentPutWith(K key, FloatFunction<? super P> function, P parameter)<P> floatShortFloatHashMap. getIfAbsentPutWith(short key, FloatFunction<? super P> function, P parameter)<P> floatSynchronizedByteFloatMap. getIfAbsentPutWith(byte key, FloatFunction<? super P> function, P parameter)<P> floatSynchronizedCharFloatMap. getIfAbsentPutWith(char key, FloatFunction<? super P> function, P parameter)<P> floatSynchronizedDoubleFloatMap. getIfAbsentPutWith(double key, FloatFunction<? super P> function, P parameter)<P> floatSynchronizedFloatFloatMap. getIfAbsentPutWith(float key, FloatFunction<? super P> function, P parameter)<P> floatSynchronizedIntFloatMap. getIfAbsentPutWith(int key, FloatFunction<? super P> function, P parameter)<P> floatSynchronizedLongFloatMap. getIfAbsentPutWith(long key, FloatFunction<? super P> function, P parameter)<P> floatSynchronizedObjectFloatMap. getIfAbsentPutWith(K key, FloatFunction<? super P> function, P parameter)<P> floatSynchronizedShortFloatMap. getIfAbsentPutWith(short key, FloatFunction<? super P> function, P parameter)<P> floatUnmodifiableByteFloatMap. getIfAbsentPutWith(byte key, FloatFunction<? super P> function, P parameter)<P> floatUnmodifiableCharFloatMap. getIfAbsentPutWith(char key, FloatFunction<? super P> function, P parameter)<P> floatUnmodifiableDoubleFloatMap. getIfAbsentPutWith(double key, FloatFunction<? super P> function, P parameter)<P> floatUnmodifiableFloatFloatMap. getIfAbsentPutWith(float key, FloatFunction<? super P> function, P parameter)<P> floatUnmodifiableIntFloatMap. getIfAbsentPutWith(int key, FloatFunction<? super P> function, P parameter)<P> floatUnmodifiableLongFloatMap. getIfAbsentPutWith(long key, FloatFunction<? super P> function, P parameter)<P> floatUnmodifiableObjectFloatMap. getIfAbsentPutWith(K key, FloatFunction<? super P> function, P parameter)<P> floatUnmodifiableShortFloatMap. getIfAbsentPutWith(short key, FloatFunction<? super P> function, P parameter)floatObjectFloatHashMap. getIfAbsentPutWithKey(K key, FloatFunction<? super K> function)floatObjectFloatHashMapWithHashingStrategy. getIfAbsentPutWithKey(K key, FloatFunction<? super K> function)floatSynchronizedObjectFloatMap. getIfAbsentPutWithKey(K key, FloatFunction<? super K> function)floatUnmodifiableObjectFloatMap. 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)doubleByteObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleCharObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleDoubleObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleFloatObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleIntObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleLongObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleShortObjectHashMap. sumOfFloat(FloatFunction<? super V> function)doubleSynchronizedByteObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleSynchronizedCharObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleSynchronizedDoubleObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleSynchronizedFloatObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleSynchronizedIntObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleSynchronizedLongObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleSynchronizedShortObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleUnmodifiableByteObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleUnmodifiableCharObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleUnmodifiableDoubleObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleUnmodifiableFloatObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleUnmodifiableIntObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleUnmodifiableLongObjectMap. sumOfFloat(FloatFunction<? super V> function)doubleUnmodifiableShortObjectMap. sumOfFloat(FloatFunction<? super V> function) -
Uses of FloatFunction in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type FloatFunction Modifier and Type Method Description ImmutableFloatListImmutableOrderedMapAdapter. collectFloat(FloatFunction<? super V> floatFunction)<VV> ImmutableObjectDoubleMap<VV>ImmutableOrderedMapAdapter. sumByFloat(Function<? super V,? extends VV> groupBy, 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 MutableFloatListOrderedMapAdapter. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatListUnmodifiableMutableOrderedMap. 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.DoubleSummaryStatisticsUnmodifiableMutableOrderedMap. summarizeFloat(FloatFunction<? super V> function)doubleUnmodifiableMutableOrderedMap. 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 ImmutableFloatListAbstractImmutableSortedMap. 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 MutableFloatListAbstractMutableSortedMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatListSynchronizedSortedMap. collectFloat(FloatFunction<? super V> floatFunction)MutableFloatListUnmodifiableTreeMap. 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)doubleUnmodifiableTreeMap. 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. functionMethods 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 ImmutableFloatSetAbstractImmutableSet. 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 MutableFloatSetMultiReaderUnifiedSet. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatSetMultiReaderUnifiedSet.UntouchableMutableSet. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatSetSynchronizedMutableSet. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatSetUnmodifiableMutableSet. 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 ImmutableFloatListAbstractImmutableSortedSet. 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 MutableFloatListSortedSetAdapter. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatListSynchronizedSortedSet. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatListTreeSortedSet. collectFloat(FloatFunction<? super T> floatFunction)MutableFloatListUnmodifiableSortedSet. 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 ImmutableFloatStackImmutableArrayStack. collectFloat(FloatFunction<? super T> floatFunction)Deprecated.<R extends MutableFloatCollection>
RImmutableArrayStack. collectFloat(FloatFunction<? super T> floatFunction, R target)Deprecated.ImmutableFloatStackImmutableEmptyStack. collectFloat(FloatFunction<? super T> floatFunction)<R extends MutableFloatCollection>
RImmutableEmptyStack. collectFloat(FloatFunction<? super T> floatFunction, R target)ImmutableFloatStackImmutableNotEmptyStack. 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)doubleImmutableArrayStack. 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 MutableFloatStackArrayStack. collectFloat(FloatFunction<? super T> floatFunction)<R extends MutableFloatCollection>
RArrayStack. collectFloat(FloatFunction<? super T> floatFunction, R target)MutableFloatStackSynchronizedStack. collectFloat(FloatFunction<? super T> floatFunction)<R extends MutableFloatCollection>
RSynchronizedStack. collectFloat(FloatFunction<? super T> floatFunction, R target)MutableFloatStackUnmodifiableStack. 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)doubleArrayStack. sumOfFloat(FloatFunction<? super T> floatFunction)doubleSynchronizedStack. sumOfFloat(FloatFunction<? super T> floatFunction)doubleUnmodifiableStack. 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> MutableFloatListArrayIterate. collectFloat(T[] objectArray, FloatFunction<? super T> floatFunction)static <T,R extends MutableFloatCollection>
RArrayIterate. collectFloat(T[] objectArray, FloatFunction<? super T> floatFunction, R target)static <T> MutableFloatListArrayListIterate. 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> MutableFloatCollectionIterate. collectFloat(java.lang.Iterable<T> iterable, FloatFunction<? super T> floatFunction)Returns a newfloatcollection 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 specifiedtargetcollection.static <T> MutableFloatListListIterate. 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> doubleArrayIterate. sumOfFloat(T[] array, FloatFunction<? super T> function)static <T> doubleIterate. sumOfFloat(java.lang.Iterable<T> iterable, FloatFunction<? super T> function)static <T> doubleListIterate. 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 <R extends MutableFloatCollection,T>
RInternalArrayIterate. collectFloat(T[] items, int size, FloatFunction<? super T> floatFunction, R target)Adds all array elements to the target MutableFloatCollection after using the function supplied to convert each source element to the appropriate typestatic <T> MutableFloatCollectionIterableIterate. 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> MutableFloatCollectionIteratorIterate. 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> MutableFloatListRandomAccessListIterate. 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.DoubleSummaryStatisticsInternalArrayIterate. summarizeFloat(T[] items, int size, FloatFunction<? super T> function)static <T> doubleInternalArrayIterate. sumOfFloat(T[] array, int size, FloatFunction<? super T> function)static <T> doubleIterableIterate. sumOfFloat(java.lang.Iterable<T> iterable, FloatFunction<? super T> function)static <T> doubleIteratorIterate. sumOfFloat(java.util.Iterator<T> iterator, FloatFunction<? super T> function)static <T> doubleRandomAccessListIterate. sumOfFloat(java.util.List<T> list, FloatFunction<? super T> function)
-