Uses of Interface
org.eclipse.collections.api.block.function.primitive.FloatToObjectFunction
-
Packages that use FloatToObjectFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.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.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.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.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of FloatToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
FloatIterable. collect(FloatToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection.default <V,R extends java.util.Collection<V>>
RFloatIterable. collect(FloatToObjectFunction<? extends V> function, R target)
Same asFloatIterable.collect(FloatToObjectFunction)
, only the results are added to the target Collection.<V> LazyIterable<V>
LazyFloatIterable. collect(FloatToObjectFunction<? extends V> function)
default <V,R extends java.util.Collection<V>>
RFloatIterable. flatCollect(FloatToObjectFunction<? extends java.lang.Iterable<V>> function, R target)
flatCollect
is a special case ofFloatIterable.collect(FloatToObjectFunction)
.<V> LazyIterable<V>
LazyFloatIterable. flatCollect(FloatToObjectFunction<? extends java.lang.Iterable<V>> function)
default <T> MutableFloatList
FloatIterable. toSortedListBy(FloatToObjectFunction<T> function)
Converts the collection to a MutableFloatListImplementation sorted based on the natural order of the key returned byfunction
.default <T> MutableFloatList
FloatIterable. toSortedListBy(FloatToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Converts the collection to a MutableFloatList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
. -
Uses of FloatToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> Bag<V>
FloatBag. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatBag. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
MutableFloatBag. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> ImmutableCollection<V>
ImmutableFloatCollection. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
MutableFloatCollection. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> ListIterable<V>
FloatList. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableFloatList. collect(FloatToObjectFunction<? extends V> function)
<V> MutableList<V>
MutableFloatList. collect(FloatToObjectFunction<? extends V> function)
default <T> MutableFloatList
MutableFloatList. sortThisBy(FloatToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned byfunction
.default <T> MutableFloatList
MutableFloatList. sortThisBy(FloatToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
. -
Uses of FloatToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> Bag<V>
FloatValuesMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
MutableFloatValuesMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
MutableObjectFloatMap. collect(FloatToObjectFunction<? extends V> function)
V
MutableFloatObjectMap. getIfAbsentPutWithKey(float key, FloatToObjectFunction<? extends V> 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. -
Uses of FloatToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> OrderedIterable<V>
OrderedFloatIterable. collect(FloatToObjectFunction<? extends V> function)
<V> ReversibleIterable<V>
ReversibleFloatIterable. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> SetIterable<V>
FloatSet. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableFloatSet. collect(FloatToObjectFunction<? extends V> function)
<V> MutableSet<V>
MutableFloatSet. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> StackIterable<V>
FloatStack. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableFloatStack. collect(FloatToObjectFunction<? extends V> function)
<V> MutableStack<V>
MutableFloatStack. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableFloatEmptyBag. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatHashBag. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatSingletonBag. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableBag<V>
FloatHashBag. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedFloatBag. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableFloatBag. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement FloatToObjectFunction Modifier and Type Class Description class
FloatCaseFunction<V>
This file was automatically generated from template file primitiveCaseFunction.stg.Fields in org.eclipse.collections.impl.block.function.primitive declared as FloatToObjectFunction Modifier and Type Field Description private FloatToObjectFunction<? extends V>
FloatCaseFunction. defaultFunction
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type FloatToObjectFunction Modifier and Type Field Description private MutableList<Pair<FloatPredicate,FloatToObjectFunction<? extends V>>>
FloatCaseFunction. predicateFunctions
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description FloatCaseFunction<V>
FloatCaseFunction. addCase(FloatPredicate predicate, FloatToObjectFunction<? extends V> function)
FloatCaseFunction<V>
FloatCaseFunction. setDefault(FloatToObjectFunction<? extends V> function)
Constructors in org.eclipse.collections.impl.block.function.primitive with parameters of type FloatToObjectFunction Constructor Description FloatCaseFunction(FloatToObjectFunction<? extends V> newDefaultFunction)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableCollection<V>
AbstractSynchronizedFloatCollection. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractUnmodifiableFloatCollection. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as FloatToObjectFunction Modifier and Type Field Description private FloatToObjectFunction<? extends V>
CollectFloatToObjectIterable. function
private FloatToObjectFunction<? extends java.lang.Iterable<V>>
FlatCollectFloatToObjectIterable.FlatCollectFloatIterator. function
private FloatToObjectFunction<? extends java.lang.Iterable<V>>
FlatCollectFloatToObjectIterable. function
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> LazyIterable<V>
AbstractLazyFloatIterable. collect(FloatToObjectFunction<? extends V> function)
<V> LazyIterable<V>
AbstractLazyFloatIterable. flatCollect(FloatToObjectFunction<? extends java.lang.Iterable<V>> function)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type FloatToObjectFunction Constructor Description CollectFloatToObjectIterable(FloatIterable iterable, FloatToObjectFunction<? extends V> function)
FlatCollectFloatIterator(FloatIterable iterable, FloatToObjectFunction<? extends java.lang.Iterable<V>> newFunction)
FlatCollectFloatIterator(FloatIterator newIterator, FloatToObjectFunction<? extends java.lang.Iterable<V>> newFunction)
FlatCollectFloatToObjectIterable(FloatIterable iterable, FloatToObjectFunction<? extends java.lang.Iterable<V>> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
ImmutableFloatArrayList. collect(FloatToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableFloatArrayList. collect(FloatToObjectFunction<? extends V> function, R target)
<V> ImmutableList<V>
ImmutableFloatEmptyList. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableFloatSingletonList. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableList<V>
FloatArrayList. collect(FloatToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RFloatArrayList. collect(FloatToObjectFunction<? extends V> function, R target)
<V> MutableList<V>
SynchronizedFloatList. collect(FloatToObjectFunction<? extends V> function)
<V> MutableList<V>
UnmodifiableFloatList. collect(FloatToObjectFunction<? extends V> function)
<T> MutableFloatList
SynchronizedFloatList. sortThisBy(FloatToObjectFunction<T> function)
<T> MutableFloatList
SynchronizedFloatList. sortThisBy(FloatToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableByteFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteFloatHashMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharFloatHashMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleFloatHashMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatFloatHashMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntFloatHashMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongFloatHashMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectFloatHashMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortFloatEmptyMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortFloatHashMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortFloatSingletonMap. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
AbstractMutableFloatKeySet. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractMutableFloatValuesMap.AbstractFloatValuesCollection. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
AbstractMutableFloatValuesMap. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableFloatFloatMapKeySet. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableFloatMapKeySet. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectFloatHashMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectFloatHashMap.ValuesCollection. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectFloatHashMapWithHashingStrategy. collect(FloatToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectFloatHashMapWithHashingStrategy.ValuesCollection. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedByteFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedCharFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedDoubleFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedFloatFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedIntFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedLongFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
SynchronizedObjectFloatMap. collect(FloatToObjectFunction<? extends V1> function)
<V> MutableBag<V>
SynchronizedShortFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableByteFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableCharFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableDoubleFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableFloatFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableIntFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableLongFloatMap. collect(FloatToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
UnmodifiableObjectFloatMap. collect(FloatToObjectFunction<? extends V1> function)
<V> MutableBag<V>
UnmodifiableShortFloatMap. collect(FloatToObjectFunction<? extends V> function)
V
FloatObjectHashMap. getIfAbsentPutWithKey(float key, FloatToObjectFunction<? extends V> function)
V
SynchronizedFloatObjectMap. getIfAbsentPutWithKey(float key, FloatToObjectFunction<? extends V> function)
V
UnmodifiableFloatObjectMap. getIfAbsentPutWithKey(float key, FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
SynchronizedFloatIterable. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> ImmutableSet<V>
ImmutableFloatEmptySet. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableFloatSingletonSet. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
FloatHashSet. collect(FloatToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RFloatHashSet. collect(FloatToObjectFunction<? extends V> function, R target)
<V> ImmutableSet<V>
FloatHashSet.ImmutableFloatHashSet. collect(FloatToObjectFunction<? extends V> function)
<V> MutableSet<V>
SynchronizedFloatSet. collect(FloatToObjectFunction<? extends V> function)
<V> MutableSet<V>
UnmodifiableFloatSet. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> ImmutableStack<V>
ImmutableFloatArrayStack. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableFloatEmptyStack. collect(FloatToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableFloatSingletonStack. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description <V> MutableStack<V>
FloatArrayStack. collect(FloatToObjectFunction<? extends V> function)
<V> MutableStack<V>
SynchronizedFloatStack. collect(FloatToObjectFunction<? extends V> function)
<V> MutableStack<V>
UnmodifiableFloatStack. collect(FloatToObjectFunction<? extends V> function)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description static <V,R extends java.util.Collection<V>>
RFloatIterableIterate. collect(FloatIterable iterable, FloatToObjectFunction<? extends V> function, R targetCollection)
static <V,R extends java.util.Collection<V>>
RFloatIteratorIterate. collect(FloatIterator iterator, FloatToObjectFunction<? extends V> function, R targetCollection)
-
Uses of FloatToObjectFunction in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type FloatToObjectFunction Modifier and Type Method Description static <V> LazyIterable<V>
LazyFloatIterate. collect(FloatIterable iterable, FloatToObjectFunction<? extends V> function)
Creates a deferred transforming float iterable for the specified float iterable.static <V> LazyIterable<V>
LazyFloatIterate. collectIf(FloatIterable iterable, FloatPredicate predicate, FloatToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming float iterable for the specified float iterable.static <V> LazyIterable<V>
LazyFloatIterate. flatCollect(FloatIterable iterable, FloatToObjectFunction<? extends java.lang.Iterable<V>> function)
Creates a deferred transforming and flattening float iterable for the specified float iterable.
-