Uses of Interface
org.eclipse.collections.api.block.function.primitive.ByteIntToObjectFunction
-
Packages that use ByteIntToObjectFunction Package Description org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API. -
-
Uses of ByteIntToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type ByteIntToObjectFunction Modifier and Type Method Description default <V> ListIterable<V>ByteList. collectWithIndex(ByteIntToObjectFunction<? extends V> function)Returns a new ListIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ImmutableList<V>ImmutableByteList. collectWithIndex(ByteIntToObjectFunction<? extends V> function)Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.default <V> MutableList<V>MutableByteList. collectWithIndex(ByteIntToObjectFunction<? extends V> function)Returns a new MutableList using results obtained by applying the specified function to each element and its corresponding index. -
Uses of ByteIntToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type ByteIntToObjectFunction Modifier and Type Method Description default <V> OrderedIterable<V>OrderedByteIterable. collectWithIndex(ByteIntToObjectFunction<? extends V> function)Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index.default <V,R extends Collection<V>>
ROrderedByteIterable. collectWithIndex(ByteIntToObjectFunction<? extends V> function, R target)Adds elements to the target Collection using results obtained by applying the specified function to each element and its corresponding index.default <V> ReversibleIterable<V>ReversibleByteIterable. collectWithIndex(ByteIntToObjectFunction<? extends V> function)Returns a new ReversibleIterable using results obtained by applying the specified function to each element and its corresponding index. -
Uses of ByteIntToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type ByteIntToObjectFunction Modifier and Type Method Description default <V> StackIterable<V>ByteStack. collectWithIndex(ByteIntToObjectFunction<? extends V> function)Returns a new StackIterable using results obtained by applying the specified function to each element and its corresponding index.default <V> ImmutableStack<V>ImmutableByteStack. collectWithIndex(ByteIntToObjectFunction<? extends V> function)Returns a new ImmutableStack using results obtained by applying the specified function to each element and its corresponding index.default <V> MutableStack<V>MutableByteStack. collectWithIndex(ByteIntToObjectFunction<? extends V> function)Returns a new MutableStack using results obtained by applying the specified function to each element and its corresponding index.
-