Uses of Interface
org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction
Packages that use ByteToObjectFunction
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 ByteToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ByteToObjectFunctionModifier and TypeMethodDescription<V> RichIterable<V>ByteIterable.collect(ByteToObjectFunction<? 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>>
RByteIterable.collect(ByteToObjectFunction<? extends V> function, R target) Same asByteIterable.collect(ByteToObjectFunction), only the results are added to the target Collection.<V> LazyIterable<V>LazyByteIterable.collect(ByteToObjectFunction<? extends V> function) default <V,R extends Collection<V>>
RByteIterable.flatCollect(ByteToObjectFunction<? extends Iterable<V>> function, R target) flatCollectis a special case ofByteIterable.collect(ByteToObjectFunction).<V> LazyIterable<V>LazyByteIterable.flatCollect(ByteToObjectFunction<? extends Iterable<V>> function) default <T> MutableByteListByteIterable.toSortedListBy(ByteToObjectFunction<T> function) Converts the collection to a MutableByteListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableByteListByteIterable.toSortedListBy(ByteToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableByteList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of ByteToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type ByteToObjectFunctionModifier and TypeMethodDescription<V> Bag<V>ByteBag.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableByteBag.collect(ByteToObjectFunction<? extends V> function) <V> MutableBag<V>MutableByteBag.collect(ByteToObjectFunction<? extends V> function) -
Uses of ByteToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type ByteToObjectFunctionModifier and TypeMethodDescription<V> ImmutableCollection<V>ImmutableByteCollection.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V>MutableByteCollection.collect(ByteToObjectFunction<? extends V> function) -
Uses of ByteToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type ByteToObjectFunctionModifier and TypeMethodDescription<V> ListIterable<V>ByteList.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableList<V>ImmutableByteList.collect(ByteToObjectFunction<? extends V> function) <V> MutableList<V>MutableByteList.collect(ByteToObjectFunction<? extends V> function) default <T> MutableByteListMutableByteList.sortThisBy(ByteToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableByteListMutableByteList.sortThisBy(ByteToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator. -
Uses of ByteToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteToObjectFunctionModifier and TypeMethodDescription<V> Bag<V>ByteValuesMap.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableByteByteMap.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableCharByteMap.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableDoubleByteMap.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableFloatByteMap.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableIntByteMap.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableLongByteMap.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableCollection<V>ImmutableObjectByteMap.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableShortByteMap.collect(ByteToObjectFunction<? extends V> function) <V> MutableBag<V>MutableByteValuesMap.collect(ByteToObjectFunction<? extends V> function) <V> MutableCollection<V>MutableObjectByteMap.collect(ByteToObjectFunction<? extends V> function) MutableByteObjectMap.getIfAbsentPutWithKey(byte key, ByteToObjectFunction<? 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 ByteToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type ByteToObjectFunctionModifier and TypeMethodDescription<V> OrderedIterable<V>OrderedByteIterable.collect(ByteToObjectFunction<? extends V> function) <V> ReversibleIterable<V>ReversibleByteIterable.collect(ByteToObjectFunction<? extends V> function) -
Uses of ByteToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type ByteToObjectFunctionModifier and TypeMethodDescription<V> SetIterable<V>ByteSet.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableSet<V>ImmutableByteSet.collect(ByteToObjectFunction<? extends V> function) <V> MutableSet<V>MutableByteSet.collect(ByteToObjectFunction<? extends V> function) -
Uses of ByteToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type ByteToObjectFunctionModifier and TypeMethodDescription<V> StackIterable<V>ByteStack.collect(ByteToObjectFunction<? extends V> function) <V> ImmutableStack<V>ImmutableByteStack.collect(ByteToObjectFunction<? extends V> function) <V> MutableStack<V>MutableByteStack.collect(ByteToObjectFunction<? extends V> function)