Uses of Interface
org.eclipse.collections.api.block.function.primitive.FloatToObjectFunction
Packages that use FloatToObjectFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
-
Uses of FloatToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type FloatToObjectFunctionModifier and TypeMethodDescription<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 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 Collection<V>>
RFloatIterable.flatCollect(FloatToObjectFunction<? extends Iterable<V>> function, R target) flatCollectis a special case ofFloatIterable.collect(FloatToObjectFunction).<V> LazyIterable<V>LazyFloatIterable.flatCollect(FloatToObjectFunction<? extends Iterable<V>> function) default <T> MutableFloatListFloatIterable.toSortedListBy(FloatToObjectFunction<T> function) Converts the collection to a MutableFloatListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableFloatListFloatIterable.toSortedListBy(FloatToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableFloatList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of FloatToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type FloatToObjectFunctionModifier and TypeMethodDescription<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 FloatToObjectFunctionModifier and TypeMethodDescription<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 FloatToObjectFunctionModifier and TypeMethodDescription<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> MutableFloatListMutableFloatList.sortThisBy(FloatToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableFloatListMutableFloatList.sortThisBy(FloatToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator. -
Uses of FloatToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type FloatToObjectFunctionModifier and TypeMethodDescription<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) 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 FloatToObjectFunctionModifier and TypeMethodDescription<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 FloatToObjectFunctionModifier and TypeMethodDescription<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 FloatToObjectFunctionModifier and TypeMethodDescription<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)