Uses of Interface
org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction
-
Packages that use ByteToObjectFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of ByteToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ByteToObjectFunction Modifier and Type Method Description <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 java.util.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 java.util.Collection<V>>
RByteIterable. flatCollect(ByteToObjectFunction<? extends java.lang.Iterable<V>> function, R target)
flatCollect
is a special case ofByteIterable.collect(ByteToObjectFunction)
.<V> LazyIterable<V>
LazyByteIterable. flatCollect(ByteToObjectFunction<? extends java.lang.Iterable<V>> function)
default <T> MutableByteList
ByteIterable. toSortedListBy(ByteToObjectFunction<T> function)
Converts the collection to a MutableByteListImplementation sorted based on the natural order of the key returned byfunction
.default <T> MutableByteList
ByteIterable. toSortedListBy(ByteToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Converts the collection to a MutableByteList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
. -
Uses of ByteToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <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 ByteToObjectFunction Modifier and Type Method Description <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 ByteToObjectFunction Modifier and Type Method Description <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> MutableByteList
MutableByteList. sortThisBy(ByteToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned byfunction
.default <T> MutableByteList
MutableByteList. sortThisBy(ByteToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
. -
Uses of ByteToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <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)
V
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 ByteToObjectFunction Modifier and Type Method Description <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 ByteToObjectFunction Modifier and Type Method Description <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 ByteToObjectFunction Modifier and Type Method Description <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)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableByteEmptyBag. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteHashBag. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteSingletonBag. collect(ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> MutableBag<V>
ByteHashBag. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedByteBag. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableByteBag. collect(ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement ByteToObjectFunction Modifier and Type Class Description class
ByteCaseFunction<V>
This file was automatically generated from template file primitiveCaseFunction.stg.Fields in org.eclipse.collections.impl.block.function.primitive declared as ByteToObjectFunction Modifier and Type Field Description private ByteToObjectFunction<? extends V>
ByteCaseFunction. defaultFunction
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type ByteToObjectFunction Modifier and Type Field Description private MutableList<Pair<BytePredicate,ByteToObjectFunction<? extends V>>>
ByteCaseFunction. predicateFunctions
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description ByteCaseFunction<V>
ByteCaseFunction. addCase(BytePredicate predicate, ByteToObjectFunction<? extends V> function)
ByteCaseFunction<V>
ByteCaseFunction. setDefault(ByteToObjectFunction<? extends V> function)
Constructors in org.eclipse.collections.impl.block.function.primitive with parameters of type ByteToObjectFunction Constructor Description ByteCaseFunction(ByteToObjectFunction<? extends V> newDefaultFunction)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> MutableCollection<V>
AbstractSynchronizedByteCollection. collect(ByteToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractUnmodifiableByteCollection. collect(ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as ByteToObjectFunction Modifier and Type Field Description private ByteToObjectFunction<? extends V>
CollectByteToObjectIterable. function
private ByteToObjectFunction<? extends java.lang.Iterable<V>>
FlatCollectByteToObjectIterable.FlatCollectByteIterator. function
private ByteToObjectFunction<? extends java.lang.Iterable<V>>
FlatCollectByteToObjectIterable. function
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> LazyIterable<V>
AbstractLazyByteIterable. collect(ByteToObjectFunction<? extends V> function)
<V> LazyIterable<V>
AbstractLazyByteIterable. flatCollect(ByteToObjectFunction<? extends java.lang.Iterable<V>> function)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type ByteToObjectFunction Constructor Description CollectByteToObjectIterable(ByteIterable iterable, ByteToObjectFunction<? extends V> function)
FlatCollectByteIterator(ByteIterable iterable, ByteToObjectFunction<? extends java.lang.Iterable<V>> newFunction)
FlatCollectByteIterator(ByteIterator newIterator, ByteToObjectFunction<? extends java.lang.Iterable<V>> newFunction)
FlatCollectByteToObjectIterable(ByteIterable iterable, ByteToObjectFunction<? extends java.lang.Iterable<V>> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
ImmutableByteArrayList. collect(ByteToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableByteArrayList. collect(ByteToObjectFunction<? extends V> function, R target)
<V> ImmutableList<V>
ImmutableByteEmptyList. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableByteSingletonList. collect(ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> MutableList<V>
ByteArrayList. collect(ByteToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RByteArrayList. collect(ByteToObjectFunction<? extends V> function, R target)
<V> MutableList<V>
SynchronizedByteList. collect(ByteToObjectFunction<? extends V> function)
<V> MutableList<V>
UnmodifiableByteList. collect(ByteToObjectFunction<? extends V> function)
<T> MutableByteList
SynchronizedByteList. sortThisBy(ByteToObjectFunction<T> function)
<T> MutableByteList
SynchronizedByteList. sortThisBy(ByteToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableByteByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteByteHashMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharByteHashMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleByteHashMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatByteHashMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntByteHashMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongByteHashMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectByteHashMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortByteEmptyMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortByteHashMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortByteSingletonMap. collect(ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
AbstractMutableByteKeySet. collect(ByteToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractMutableByteValuesMap.AbstractByteValuesCollection. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
AbstractMutableByteValuesMap. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableByteByteMapKeySet. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableByteMapKeySet. collect(ByteToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectByteHashMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectByteHashMap.ValuesCollection. collect(ByteToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectByteHashMapWithHashingStrategy. collect(ByteToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectByteHashMapWithHashingStrategy.ValuesCollection. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedByteByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedCharByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedDoubleByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedFloatByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedIntByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedLongByteMap. collect(ByteToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
SynchronizedObjectByteMap. collect(ByteToObjectFunction<? extends V1> function)
<V> MutableBag<V>
SynchronizedShortByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableByteByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableCharByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableDoubleByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableFloatByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableIntByteMap. collect(ByteToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableLongByteMap. collect(ByteToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
UnmodifiableObjectByteMap. collect(ByteToObjectFunction<? extends V1> function)
<V> MutableBag<V>
UnmodifiableShortByteMap. collect(ByteToObjectFunction<? extends V> function)
V
ByteObjectHashMap. getIfAbsentPutWithKey(byte key, ByteToObjectFunction<? extends V> function)
V
SynchronizedByteObjectMap. getIfAbsentPutWithKey(byte key, ByteToObjectFunction<? extends V> function)
V
UnmodifiableByteObjectMap. getIfAbsentPutWithKey(byte key, ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
SynchronizedByteIterable. collect(ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> ImmutableSet<V>
ImmutableByteEmptySet. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableByteSingletonSet. collect(ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
ByteHashSet. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ByteHashSet.ImmutableByteHashSet. collect(ByteToObjectFunction<? extends V> function)
<V> MutableSet<V>
SynchronizedByteSet. collect(ByteToObjectFunction<? extends V> function)
<V> MutableSet<V>
UnmodifiableByteSet. collect(ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> ImmutableStack<V>
ImmutableByteArrayStack. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableByteEmptyStack. collect(ByteToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableByteSingletonStack. collect(ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description <V> MutableStack<V>
ByteArrayStack. collect(ByteToObjectFunction<? extends V> function)
<V> MutableStack<V>
SynchronizedByteStack. collect(ByteToObjectFunction<? extends V> function)
<V> MutableStack<V>
UnmodifiableByteStack. collect(ByteToObjectFunction<? extends V> function)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description static <V,R extends java.util.Collection<V>>
RByteIterableIterate. collect(ByteIterable iterable, ByteToObjectFunction<? extends V> function, R targetCollection)
static <V,R extends java.util.Collection<V>>
RByteIteratorIterate. collect(ByteIterator iterator, ByteToObjectFunction<? extends V> function, R targetCollection)
-
Uses of ByteToObjectFunction in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type ByteToObjectFunction Modifier and Type Method Description static <V> LazyIterable<V>
LazyByteIterate. collect(ByteIterable iterable, ByteToObjectFunction<? extends V> function)
Creates a deferred transforming byte iterable for the specified byte iterable.static <V> LazyIterable<V>
LazyByteIterate. collectIf(ByteIterable iterable, BytePredicate predicate, ByteToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming byte iterable for the specified byte iterable.static <V> LazyIterable<V>
LazyByteIterate. flatCollect(ByteIterable iterable, ByteToObjectFunction<? extends java.lang.Iterable<V>> function)
Creates a deferred transforming and flattening byte iterable for the specified byte iterable.
-