Uses of Interface
org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction
Packages that use DoubleToObjectFunction
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 DoubleToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type DoubleToObjectFunctionModifier and TypeMethodDescription<V> RichIterable<V>DoubleIterable.collect(DoubleToObjectFunction<? 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>>
RDoubleIterable.collect(DoubleToObjectFunction<? extends V> function, R target) Same asDoubleIterable.collect(DoubleToObjectFunction), only the results are added to the target Collection.<V> LazyIterable<V>LazyDoubleIterable.collect(DoubleToObjectFunction<? extends V> function) default <V,R extends Collection<V>>
RDoubleIterable.flatCollect(DoubleToObjectFunction<? extends Iterable<V>> function, R target) flatCollectis a special case ofDoubleIterable.collect(DoubleToObjectFunction).<V> LazyIterable<V>LazyDoubleIterable.flatCollect(DoubleToObjectFunction<? extends Iterable<V>> function) default <T> MutableDoubleListDoubleIterable.toSortedListBy(DoubleToObjectFunction<T> function) Converts the collection to a MutableDoubleListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableDoubleListDoubleIterable.toSortedListBy(DoubleToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableDoubleList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of DoubleToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type DoubleToObjectFunctionModifier and TypeMethodDescription<V> Bag<V>DoubleBag.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableDoubleBag.collect(DoubleToObjectFunction<? extends V> function) <V> MutableBag<V>MutableDoubleBag.collect(DoubleToObjectFunction<? extends V> function) -
Uses of DoubleToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type DoubleToObjectFunctionModifier and TypeMethodDescription<V> ImmutableCollection<V>ImmutableDoubleCollection.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V>MutableDoubleCollection.collect(DoubleToObjectFunction<? extends V> function) -
Uses of DoubleToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type DoubleToObjectFunctionModifier and TypeMethodDescription<V> ListIterable<V>DoubleList.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableList<V>ImmutableDoubleList.collect(DoubleToObjectFunction<? extends V> function) <V> MutableList<V>MutableDoubleList.collect(DoubleToObjectFunction<? extends V> function) default <T> MutableDoubleListMutableDoubleList.sortThisBy(DoubleToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableDoubleListMutableDoubleList.sortThisBy(DoubleToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator. -
Uses of DoubleToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type DoubleToObjectFunctionModifier and TypeMethodDescription<V> Bag<V>DoubleValuesMap.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableByteDoubleMap.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableCharDoubleMap.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableDoubleDoubleMap.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableFloatDoubleMap.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableIntDoubleMap.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableLongDoubleMap.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableCollection<V>ImmutableObjectDoubleMap.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableShortDoubleMap.collect(DoubleToObjectFunction<? extends V> function) <V> MutableBag<V>MutableDoubleValuesMap.collect(DoubleToObjectFunction<? extends V> function) <V> MutableCollection<V>MutableObjectDoubleMap.collect(DoubleToObjectFunction<? extends V> function) MutableDoubleObjectMap.getIfAbsentPutWithKey(double key, DoubleToObjectFunction<? 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 DoubleToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type DoubleToObjectFunctionModifier and TypeMethodDescription<V> OrderedIterable<V>OrderedDoubleIterable.collect(DoubleToObjectFunction<? extends V> function) <V> ReversibleIterable<V>ReversibleDoubleIterable.collect(DoubleToObjectFunction<? extends V> function) -
Uses of DoubleToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type DoubleToObjectFunctionModifier and TypeMethodDescription<V> SetIterable<V>DoubleSet.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableSet<V>ImmutableDoubleSet.collect(DoubleToObjectFunction<? extends V> function) <V> MutableSet<V>MutableDoubleSet.collect(DoubleToObjectFunction<? extends V> function) -
Uses of DoubleToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type DoubleToObjectFunctionModifier and TypeMethodDescription<V> StackIterable<V>DoubleStack.collect(DoubleToObjectFunction<? extends V> function) <V> ImmutableStack<V>ImmutableDoubleStack.collect(DoubleToObjectFunction<? extends V> function) <V> MutableStack<V>MutableDoubleStack.collect(DoubleToObjectFunction<? extends V> function)