Uses of Interface
org.eclipse.collections.api.block.function.primitive.LongToObjectFunction
Packages that use LongToObjectFunction
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 LongToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type LongToObjectFunctionModifier and TypeMethodDescription<V> LazyIterable<V>LazyLongIterable.collect(LongToObjectFunction<? extends V> function) <V> RichIterable<V>LongIterable.collect(LongToObjectFunction<? 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>>
RLongIterable.collect(LongToObjectFunction<? extends V> function, R target) Same asLongIterable.collect(LongToObjectFunction), only the results are added to the target Collection.<V> LazyIterable<V>LazyLongIterable.flatCollect(LongToObjectFunction<? extends Iterable<V>> function) default <V,R extends Collection<V>>
RLongIterable.flatCollect(LongToObjectFunction<? extends Iterable<V>> function, R target) flatCollectis a special case ofLongIterable.collect(LongToObjectFunction).default <T> MutableLongListLongIterable.toSortedListBy(LongToObjectFunction<T> function) Converts the collection to a MutableLongListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableLongListLongIterable.toSortedListBy(LongToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableLongList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of LongToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type LongToObjectFunctionModifier and TypeMethodDescription<V> ImmutableBag<V>ImmutableLongBag.collect(LongToObjectFunction<? extends V> function) <V> Bag<V>LongBag.collect(LongToObjectFunction<? extends V> function) <V> MutableBag<V>MutableLongBag.collect(LongToObjectFunction<? extends V> function) -
Uses of LongToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type LongToObjectFunctionModifier and TypeMethodDescription<V> ImmutableCollection<V>ImmutableLongCollection.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V>MutableLongCollection.collect(LongToObjectFunction<? extends V> function) -
Uses of LongToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type LongToObjectFunctionModifier and TypeMethodDescription<V> ImmutableList<V>ImmutableLongList.collect(LongToObjectFunction<? extends V> function) <V> ListIterable<V>LongList.collect(LongToObjectFunction<? extends V> function) <V> MutableList<V>MutableLongList.collect(LongToObjectFunction<? extends V> function) default <T> MutableLongListMutableLongList.sortThisBy(LongToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableLongListMutableLongList.sortThisBy(LongToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator. -
Uses of LongToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type LongToObjectFunctionModifier and TypeMethodDescription<V> ImmutableBag<V>ImmutableByteLongMap.collect(LongToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableCharLongMap.collect(LongToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableDoubleLongMap.collect(LongToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableFloatLongMap.collect(LongToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableIntLongMap.collect(LongToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableLongLongMap.collect(LongToObjectFunction<? extends V> function) <V> ImmutableCollection<V>ImmutableObjectLongMap.collect(LongToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableShortLongMap.collect(LongToObjectFunction<? extends V> function) <V> Bag<V>LongValuesMap.collect(LongToObjectFunction<? extends V> function) <V> MutableBag<V>MutableLongValuesMap.collect(LongToObjectFunction<? extends V> function) <V> MutableCollection<V>MutableObjectLongMap.collect(LongToObjectFunction<? extends V> function) MutableLongObjectMap.getIfAbsentPutWithKey(long key, LongToObjectFunction<? 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 LongToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type LongToObjectFunctionModifier and TypeMethodDescription<V> OrderedIterable<V>OrderedLongIterable.collect(LongToObjectFunction<? extends V> function) <V> ReversibleIterable<V>ReversibleLongIterable.collect(LongToObjectFunction<? extends V> function) -
Uses of LongToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type LongToObjectFunctionModifier and TypeMethodDescription<V> ImmutableSet<V>ImmutableLongSet.collect(LongToObjectFunction<? extends V> function) <V> SetIterable<V>LongSet.collect(LongToObjectFunction<? extends V> function) <V> MutableSet<V>MutableLongSet.collect(LongToObjectFunction<? extends V> function) -
Uses of LongToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type LongToObjectFunctionModifier and TypeMethodDescription<V> ImmutableStack<V>ImmutableLongStack.collect(LongToObjectFunction<? extends V> function) <V> StackIterable<V>LongStack.collect(LongToObjectFunction<? extends V> function) <V> MutableStack<V>MutableLongStack.collect(LongToObjectFunction<? extends V> function)