Uses of Interface
org.eclipse.collections.api.block.function.primitive.ByteFunction
Packages that use ByteFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains interfaces for map API which enhance the performance and functionality of
Map
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 mutable and immutable sorted map interfaces.
This package contains interfaces for set API which enhance the performance and functionality of
Set
.This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag
interface.This package contains implementations of the
MutableBag
interface.This package contains implementations of
MutableSortedBag
.This package contains implementations of the
MutableBiMap
interface.This package contains implementations of the
SerializableComparator
interface to compare primitive double, int and long.This package contains factory implementations for
Function
, Predicate
, SerializableComparator
and Procedure
.This package contains implementations of
Procedure
and Procedure2
.This package contains implementations of primitive procedures.
This package contains implementations of the
MutableCollection
interface.This package contains implementations of the
LazyIterable
interface.This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the
FixedSizeList
interface.This package contains implementations of the
ImmutableList
interface.This package contains implementations of the
MutableList
interface.This package contains implementations of the
ImmutableMap
interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap
interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the
MutableSortedMap
interface.This package contains the implementations of
ImmutableSet
.This package contains implementations of
MutableSet
.This package contains implementations of
ImmutableSortedSet
.This package contains implementations of
MutableSortedSet
.This package contains implementations of the
ImmutableStack
interface.This package contains implementations of the
MutableStack
interface.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of ByteFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ByteFunctionModifier and TypeMethodDescriptionLazyIterable.collectByte
(ByteFunction<? super T> byteFunction) Returns a lazy ByteIterable which will transform the underlying iterable data to byte values based on the byteFunction.RichIterable.collectByte
(ByteFunction<? super T> byteFunction) Returns a new primitivebyte
iterable with the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RRichIterable.collectByte
(ByteFunction<? super T> byteFunction, R target) Same asRichIterable.collectByte(ByteFunction)
, except that the results are gathered into the specifiedtarget
collection. -
Uses of ByteFunction in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableBag.collectByte
(ByteFunction<? super T> byteFunction) default MutableByteBag
MutableBag.collectByte
(ByteFunction<? super T> byteFunction) UnsortedBag.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableSortedBag.collectByte
(ByteFunction<? super T> byteFunction) MutableSortedBag.collectByte
(ByteFunction<? super T> byteFunction) SortedBag.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableCollection.collectByte
(ByteFunction<? super T> byteFunction) default MutableByteCollection
MutableCollection.collectByte
(ByteFunction<? super T> byteFunction) Returns a new primitivebyte
iterable with the results of applying the specified function on each element of the source collection. -
Uses of ByteFunction in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableByteBooleanMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteByteMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableByteByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteCharMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteDoubleMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableByteDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteFloatMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableByteFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteIntMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteLongMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableByteLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
V> ImmutableByteObjectMap <V> ImmutableByteObjectMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anImmutableByteObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteShortMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableByteShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharByteMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableCharByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleByteMapFactory.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableDoubleByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatByteMapFactory.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableFloatByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntByteMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableIntByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongByteMapFactory.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
K> ImmutableObjectByteMap <K> ImmutableObjectByteMapFactory.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableObjectByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortByteMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteBooleanMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteByteMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableByteByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteCharMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteDoubleMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableByteDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteFloatMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableByteFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteIntMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteLongMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableByteLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
V> MutableByteObjectMap <V> MutableByteObjectMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anMutableByteObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteShortMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableByteShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharByteMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableCharByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleByteMapFactory.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableDoubleByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableFloatByteMapFactory.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableFloatByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntByteMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableIntByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongByteMapFactory.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableLongByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
K> MutableObjectByteMap <K> MutableObjectByteMapFactory.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableObjectByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortByteMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
. -
Uses of ByteFunction in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableList.collectByte
(ByteFunction<? super T> byteFunction) ListIterable.collectByte
(ByteFunction<? super T> byteFunction) default MutableByteList
MutableList.collectByte
(ByteFunction<? super T> byteFunction) MultiReaderList.sortThisByByte
(ByteFunction<? super T> function) MutableList.sortThisByByte
(ByteFunction<? super T> function) -
Uses of ByteFunction in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableMap.collectByte
(ByteFunction<? super V> byteFunction) ImmutableOrderedMap.collectByte
(ByteFunction<? super V> byteFunction) MutableMap.collectByte
(ByteFunction<? super V> byteFunction) MutableOrderedMap.collectByte
(ByteFunction<? super V> byteFunction) OrderedMap.collectByte
(ByteFunction<? super V> byteFunction) UnsortedMapIterable.collectByte
(ByteFunction<? super V> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutablePrimitiveObjectMap.collectByte
(ByteFunction<? super V> byteFunction) MutablePrimitiveObjectMap.collectByte
(ByteFunction<? super V> byteFunction) PrimitiveObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <P> byte
MutableByteByteMap.getIfAbsentPutWith
(byte key, ByteFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> byte
MutableCharByteMap.getIfAbsentPutWith
(char key, ByteFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> byte
MutableDoubleByteMap.getIfAbsentPutWith
(double key, ByteFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> byte
MutableFloatByteMap.getIfAbsentPutWith
(float key, ByteFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> byte
MutableIntByteMap.getIfAbsentPutWith
(int key, ByteFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> byte
MutableLongByteMap.getIfAbsentPutWith
(long key, ByteFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> byte
MutableObjectByteMap.getIfAbsentPutWith
(K key, ByteFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> byte
MutableShortByteMap.getIfAbsentPutWith
(short key, ByteFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.byte
MutableObjectByteMap.getIfAbsentPutWithKey
(K key, ByteFunction<? super K> 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 ByteFunction in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableSortedMap.collectByte
(ByteFunction<? super V> byteFunction) MutableSortedMap.collectByte
(ByteFunction<? super V> byteFunction) SortedMapIterable.collectByte
(ByteFunction<? super V> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type ByteFunctionModifier and TypeMethodDescriptionOrderedIterable.collectByte
(ByteFunction<? super T> byteFunction) ReversibleIterable.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableSet.collectByte
(ByteFunction<? super T> byteFunction) default MutableByteSet
MutableSet.collectByte
(ByteFunction<? super T> byteFunction) UnsortedSetIterable.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableSortedSet.collectByte
(ByteFunction<? super T> byteFunction) MutableSortedSet.collectByte
(ByteFunction<? super T> byteFunction) SortedSetIterable.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableStack.collectByte
(ByteFunction<? super T> byteFunction) MutableStack.collectByte
(ByteFunction<? super T> byteFunction) StackIterable.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type ByteFunctionModifier and TypeMethodDescriptionUnmodifiableRichIterable.collectByte
(ByteFunction<? super T> byteFunction) <R extends MutableByteCollection>
RUnmodifiableRichIterable.collectByte
(ByteFunction<? super T> byteFunction, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type ByteFunctionModifier and TypeMethodDescription<R extends MutableByteCollection>
RAbstractBag.collectByte
(ByteFunction<? super T> byteFunction, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractImmutableBag.collectByte
(ByteFunction<? super T> byteFunction) ImmutableEmptyBag.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionMultiReaderHashBag.collectByte
(ByteFunction<? super T> byteFunction) MultiReaderHashBag.UntouchableMutableBag.collectByte
(ByteFunction<? super T> byteFunction) SynchronizedBag.collectByte
(ByteFunction<? super T> byteFunction) UnmodifiableBag.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedBag.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectByte
(ByteFunction<? super T> byteFunction) SynchronizedSortedBag.collectByte
(ByteFunction<? super T> byteFunction) UnmodifiableSortedBag.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type ByteFunctionModifier and TypeMethodDescription<R extends MutableByteCollection>
RAbstractBiMap.collectByte
(ByteFunction<? super V> byteFunction, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractImmutableBiMap.collectByte
(ByteFunction<? super V> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractMutableBiMap.collectByte
(ByteFunction<? super V> byteFunction) UnmodifiableBiMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableBiMap.collectByte
(ByteFunction<? super V> byteFunction, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.block.comparator.primitive
Fields in org.eclipse.collections.impl.block.comparator.primitive declared as ByteFunctionConstructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type ByteFunction -
Uses of ByteFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement ByteFunctionModifier and TypeClassDescriptionstatic final class
Functions.ByteFunctionChain<T1,
T2> private static class
private static final class
Fields in org.eclipse.collections.impl.block.factory declared as ByteFunctionModifier and TypeFieldDescriptionprivate final ByteFunction
<? super T> HashingStrategies.ByteFunctionHashingStrategy.function
private final ByteFunction
<? super T2> Functions.ByteFunctionChain.function2
private static final ByteFunction
<String> StringFunctions.TO_PRIMITIVE_BYTE
Methods in org.eclipse.collections.impl.block.factory that return ByteFunctionModifier and TypeMethodDescriptionstatic ByteFunction
<String> StringFunctions.toPrimitiveByte()
static ByteFunction
<Integer> PrimitiveFunctions.unboxIntegerToByte()
Methods in org.eclipse.collections.impl.block.factory with parameters of type ByteFunctionModifier and TypeMethodDescriptionstatic <T> SerializableComparator
<T> Comparators.byByteFunction
(ByteFunction<T> function) static <T1,
T2> Functions.ByteFunctionChain <T1, T2> Functions.chainByte
(Function<T1, T2> function1, ByteFunction<? super T2> function2) Functions.FunctionChain.chainByte
(ByteFunction<? super T3> function) static <T> HashingStrategy
<T> HashingStrategies.fromByteFunction
(ByteFunction<? super T> function) static <T> SerializableComparator
<T> Functions.toByteComparator
(ByteFunction<T> function) Constructors in org.eclipse.collections.impl.block.factory with parameters of type ByteFunctionModifierConstructorDescriptionprivate
ByteFunctionChain
(Function<T1, T2> function1, ByteFunction<? super T2> function2) private
ByteFunctionHashingStrategy
(ByteFunction<? super T> function) -
Uses of ByteFunction in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as ByteFunctionModifier and TypeFieldDescriptionprotected final ByteFunction
<? super T> SumOfByteProcedure.function
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type ByteFunction -
Uses of ByteFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as ByteFunctionModifier and TypeFieldDescriptionprivate final ByteFunction
<? super T> CollectByteProcedure.byteFunction
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type ByteFunctionModifierConstructorDescriptionCollectByteProcedure
(ByteFunction<? super T> byteFunction, MutableByteCollection targetCollection) -
Uses of ByteFunction in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.collectByte
(ByteFunction<? super T> byteFunction) <R extends MutableByteCollection>
RAbstractSynchronizedRichIterable.collectByte
(ByteFunction<? super T> byteFunction, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type ByteFunctionModifier and TypeMethodDescription<R extends MutableByteCollection>
RAbstractCollectionAdapter.collectByte
(ByteFunction<? super T> byteFunction, R target) <R extends MutableByteCollection>
RAbstractMultiReaderMutableCollection.collectByte
(ByteFunction<? super T> byteFunction, R target) final <R extends MutableByteCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.collectByte
(ByteFunction<? super T> byteFunction, R target) AbstractSynchronizedMutableCollection.collectByte
(ByteFunction<? super T> byteFunction) AbstractUnmodifiableMutableCollection.collectByte
(ByteFunction<? super T> byteFunction) <R extends MutableByteCollection>
RAbstractUnmodifiableMutableCollection.collectByte
(ByteFunction<? super T> byteFunction, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type ByteFunctionModifier and TypeMethodDescriptionstatic <T,
R extends MutableByteCollection>
Collector<T, ?, R> Collectors2.collectByte
(ByteFunction<? super T> function, Supplier<R> supplier) Returns a new MutableByteCollection with the results of applying the specified ByteFunction on each element of the source. -
Uses of ByteFunction in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractLazyIterable.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as ByteFunctionModifier and TypeFieldDescriptionprivate final ByteFunction
<? super T> CollectByteIterable.ByteFunctionToProcedure.function
private final ByteFunction
<? super T> CollectByteIterable.function
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type ByteFunctionModifierConstructorDescriptionprivate
ByteFunctionToProcedure
(ByteFunction<? super T> function) CollectByteIterable
(LazyIterable<T> adapted, ByteFunction<? super T> function) -
Uses of ByteFunction in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type ByteFunctionModifier and TypeMethodDescriptionEmptyList.sortThisByByte
(ByteFunction<? super T> function) SingletonList.sortThisByByte
(ByteFunction<? super T> function) -
Uses of ByteFunction in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractImmutableList.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type ByteFunctionModifier and TypeMethodDescription<R extends MutableByteCollection>
RFastList.collectByte
(ByteFunction<? super T> byteFunction, R target) MultiReaderFastList.collectByte
(ByteFunction<? super T> byteFunction) MultiReaderFastList.UntouchableMutableList.collectByte
(ByteFunction<? super T> byteFunction) SynchronizedMutableList.collectByte
(ByteFunction<? super T> byteFunction) UnmodifiableMutableList.collectByte
(ByteFunction<? super T> byteFunction) AbstractListAdapter.sortThisByByte
(ByteFunction<? super T> function) AbstractMutableList.sortThisByByte
(ByteFunction<? super T> function) MultiReaderFastList.sortThisByByte
(ByteFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByByte
(ByteFunction<? super T> function) SynchronizedMutableList.sortThisByByte
(ByteFunction<? super T> function) UnmodifiableMutableList.sortThisByByte
(ByteFunction<? super T> function) -
Uses of ByteFunction in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractImmutableMap.collectByte
(ByteFunction<? super V> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableByteObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableByteObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableByteObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableByteObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableByteObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableCharObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableCharObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableCharObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableCharObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableCharObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableCharObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableDoubleObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableDoubleObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableDoubleObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableDoubleObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableDoubleObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableDoubleObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableFloatObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableFloatObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableFloatObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableFloatObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableFloatObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableFloatObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableIntObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableIntObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableIntObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableIntObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableIntObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableIntObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableLongObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableLongObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableLongObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableLongObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableLongObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableLongObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableShortObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableShortObjectEmptyMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableShortObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableShortObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableShortObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RImmutableShortObjectSingletonMap.collectByte
(ByteFunction<? super V> byteFunction, R target) ImmutableByteBooleanMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) ImmutableByteByteMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) ImmutableByteCharMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) ImmutableByteDoubleMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableByteFloatMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) ImmutableByteIntMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) ImmutableByteLongMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <T,
V> ImmutableByteObjectMap <V> ImmutableByteObjectMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) ImmutableByteShortMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) ImmutableCharByteMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) ImmutableDoubleByteMapFactoryImpl.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) ImmutableFloatByteMapFactoryImpl.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) ImmutableIntByteMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) ImmutableLongByteMapFactoryImpl.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) <T,
K> ImmutableObjectByteMap <K> ImmutableObjectByteMapFactoryImpl.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ByteFunction<? super T> valueFunction) ImmutableShortByteMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractMutableMap.collectByte
(ByteFunction<? super V> byteFunction) SynchronizedMutableMap.collectByte
(ByteFunction<? super V> byteFunction) UnmodifiableMutableMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableMutableMap.collectByte
(ByteFunction<? super V> byteFunction, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ByteFunctionModifier and TypeMethodDescriptionByteObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) CharObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) DoubleObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) FloatObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) IntObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) LongObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) ShortObjectHashMap.collectByte
(ByteFunction<? super V> byteFunction) SynchronizedByteObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RSynchronizedByteObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) SynchronizedCharObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RSynchronizedCharObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) SynchronizedDoubleObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RSynchronizedDoubleObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) SynchronizedFloatObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RSynchronizedFloatObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) SynchronizedIntObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RSynchronizedIntObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) SynchronizedLongObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RSynchronizedLongObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) SynchronizedShortObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RSynchronizedShortObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) UnmodifiableByteObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableByteObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) UnmodifiableCharObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableCharObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) UnmodifiableDoubleObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableDoubleObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) UnmodifiableFloatObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableFloatObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) UnmodifiableIntObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableIntObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) UnmodifiableLongObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableLongObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) UnmodifiableShortObjectMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableShortObjectMap.collectByte
(ByteFunction<? super V> byteFunction, R target) MutableByteBooleanMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) MutableByteByteMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) MutableByteCharMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableByteDoubleMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableByteFloatMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) MutableByteIntMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) MutableByteLongMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <T,
V> MutableByteObjectMap <V> MutableByteObjectMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) MutableByteShortMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableCharByteMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) MutableDoubleByteMapFactoryImpl.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) MutableFloatByteMapFactoryImpl.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) MutableIntByteMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) MutableLongByteMapFactoryImpl.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) <T,
K> MutableObjectByteMap <K> MutableObjectByteMapFactoryImpl.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ByteFunction<? super T> valueFunction) MutableShortByteMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) <P> byte
ByteByteHashMap.getIfAbsentPutWith
(byte key, ByteFunction<? super P> function, P parameter) <P> byte
CharByteHashMap.getIfAbsentPutWith
(char key, ByteFunction<? super P> function, P parameter) <P> byte
DoubleByteHashMap.getIfAbsentPutWith
(double key, ByteFunction<? super P> function, P parameter) <P> byte
FloatByteHashMap.getIfAbsentPutWith
(float key, ByteFunction<? super P> function, P parameter) <P> byte
IntByteHashMap.getIfAbsentPutWith
(int key, ByteFunction<? super P> function, P parameter) <P> byte
LongByteHashMap.getIfAbsentPutWith
(long key, ByteFunction<? super P> function, P parameter) <P> byte
ObjectByteHashMap.getIfAbsentPutWith
(K key, ByteFunction<? super P> function, P parameter) <P> byte
ObjectByteHashMapWithHashingStrategy.getIfAbsentPutWith
(K key, ByteFunction<? super P> function, P parameter) <P> byte
ShortByteHashMap.getIfAbsentPutWith
(short key, ByteFunction<? super P> function, P parameter) <P> byte
SynchronizedByteByteMap.getIfAbsentPutWith
(byte key, ByteFunction<? super P> function, P parameter) <P> byte
SynchronizedCharByteMap.getIfAbsentPutWith
(char key, ByteFunction<? super P> function, P parameter) <P> byte
SynchronizedDoubleByteMap.getIfAbsentPutWith
(double key, ByteFunction<? super P> function, P parameter) <P> byte
SynchronizedFloatByteMap.getIfAbsentPutWith
(float key, ByteFunction<? super P> function, P parameter) <P> byte
SynchronizedIntByteMap.getIfAbsentPutWith
(int key, ByteFunction<? super P> function, P parameter) <P> byte
SynchronizedLongByteMap.getIfAbsentPutWith
(long key, ByteFunction<? super P> function, P parameter) <P> byte
SynchronizedObjectByteMap.getIfAbsentPutWith
(K key, ByteFunction<? super P> function, P parameter) <P> byte
SynchronizedShortByteMap.getIfAbsentPutWith
(short key, ByteFunction<? super P> function, P parameter) <P> byte
UnmodifiableByteByteMap.getIfAbsentPutWith
(byte key, ByteFunction<? super P> function, P parameter) <P> byte
UnmodifiableCharByteMap.getIfAbsentPutWith
(char key, ByteFunction<? super P> function, P parameter) <P> byte
UnmodifiableDoubleByteMap.getIfAbsentPutWith
(double key, ByteFunction<? super P> function, P parameter) <P> byte
UnmodifiableFloatByteMap.getIfAbsentPutWith
(float key, ByteFunction<? super P> function, P parameter) <P> byte
UnmodifiableIntByteMap.getIfAbsentPutWith
(int key, ByteFunction<? super P> function, P parameter) <P> byte
UnmodifiableLongByteMap.getIfAbsentPutWith
(long key, ByteFunction<? super P> function, P parameter) <P> byte
UnmodifiableObjectByteMap.getIfAbsentPutWith
(K key, ByteFunction<? super P> function, P parameter) <P> byte
UnmodifiableShortByteMap.getIfAbsentPutWith
(short key, ByteFunction<? super P> function, P parameter) byte
ObjectByteHashMap.getIfAbsentPutWithKey
(K key, ByteFunction<? super K> function) byte
ObjectByteHashMapWithHashingStrategy.getIfAbsentPutWithKey
(K key, ByteFunction<? super K> function) byte
SynchronizedObjectByteMap.getIfAbsentPutWithKey
(K key, ByteFunction<? super K> function) byte
UnmodifiableObjectByteMap.getIfAbsentPutWithKey
(K key, ByteFunction<? super K> function) -
Uses of ByteFunction in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionOrderedMapAdapter.collectByte
(ByteFunction<? super V> byteFunction) UnmodifiableMutableOrderedMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableMutableOrderedMap.collectByte
(ByteFunction<? super V> byteFunction, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedMap.collectByte
(ByteFunction<? super V> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectByte
(ByteFunction<? super V> byteFunction) SynchronizedSortedMap.collectByte
(ByteFunction<? super V> byteFunction) UnmodifiableTreeMap.collectByte
(ByteFunction<? super V> byteFunction) <R extends MutableByteCollection>
RUnmodifiableTreeMap.collectByte
(ByteFunction<? super V> byteFunction, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractImmutableSet.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionMultiReaderUnifiedSet.collectByte
(ByteFunction<? super T> byteFunction) MultiReaderUnifiedSet.UntouchableMutableSet.collectByte
(ByteFunction<? super T> byteFunction) SynchronizedMutableSet.collectByte
(ByteFunction<? super T> byteFunction) UnmodifiableMutableSet.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedSet.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionSortedSetAdapter.collectByte
(ByteFunction<? super T> byteFunction) SynchronizedSortedSet.collectByte
(ByteFunction<? super T> byteFunction) TreeSortedSet.collectByte
(ByteFunction<? super T> byteFunction) UnmodifiableSortedSet.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ByteFunction in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionImmutableArrayStack.collectByte
(ByteFunction<? super T> byteFunction) Deprecated.<R extends MutableByteCollection>
RImmutableArrayStack.collectByte
(ByteFunction<? super T> byteFunction, R target) Deprecated.ImmutableEmptyStack.collectByte
(ByteFunction<? super T> byteFunction) <R extends MutableByteCollection>
RImmutableEmptyStack.collectByte
(ByteFunction<? super T> byteFunction, R target) ImmutableNotEmptyStack.collectByte
(ByteFunction<? super T> function) -
Uses of ByteFunction in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type ByteFunctionModifier and TypeMethodDescriptionArrayStack.collectByte
(ByteFunction<? super T> byteFunction) <R extends MutableByteCollection>
RArrayStack.collectByte
(ByteFunction<? super T> byteFunction, R target) SynchronizedStack.collectByte
(ByteFunction<? super T> byteFunction) <R extends MutableByteCollection>
RSynchronizedStack.collectByte
(ByteFunction<? super T> byteFunction, R target) UnmodifiableStack.collectByte
(ByteFunction<? super T> byteFunction) <R extends MutableByteCollection>
RUnmodifiableStack.collectByte
(ByteFunction<? super T> byteFunction, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type ByteFunctionModifier and TypeMethodDescriptionstatic <T> MutableByteList
ArrayIterate.collectByte
(T[] objectArray, ByteFunction<? super T> byteFunction) static <T,
R extends MutableByteCollection>
RArrayIterate.collectByte
(T[] objectArray, ByteFunction<? super T> byteFunction, R target) static <T> MutableByteList
ArrayListIterate.collectByte
(ArrayList<T> list, ByteFunction<? super T> byteFunction) static <T,
R extends MutableByteCollection>
RArrayListIterate.collectByte
(ArrayList<T> list, ByteFunction<? super T> byteFunction, R target) static <T> MutableByteCollection
Iterate.collectByte
(Iterable<T> iterable, ByteFunction<? super T> byteFunction) Returns a newbyte
collection with the results of applying the specified byteFunction for each element of the iterable.static <T,
R extends MutableByteCollection>
RIterate.collectByte
(Iterable<T> iterable, ByteFunction<? super T> byteFunction, R target) Same asIterate.collectByte(Iterable, ByteFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T> MutableByteList
ListIterate.collectByte
(List<T> list, ByteFunction<? super T> byteFunction) static <T,
R extends MutableByteCollection>
RListIterate.collectByte
(List<T> list, ByteFunction<? super T> byteFunction, R target) static <K,
V> MutableByteCollection MapIterate.collectByte
(Map<K, V> map, ByteFunction<? super V> byteFunction) static <K,
V, R extends MutableByteCollection>
RMapIterate.collectByte
(Map<K, V> map, ByteFunction<? super V> byteFunction, R target) private static <T,
R extends MutableByteCollection>
RArrayListIterate.collectByteFromInternalArray
(ArrayList<T> source, ByteFunction<? super T> byteFunction, int elementsToCollect, R target) -
Uses of ByteFunction in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type ByteFunctionModifier and TypeMethodDescriptionstatic <T> MutableByteCollection
IterableIterate.collectByte
(Iterable<T> iterable, ByteFunction<? super T> byteFunction) static <T,
R extends MutableByteCollection>
RIterableIterate.collectByte
(Iterable<T> iterable, ByteFunction<? super T> byteFunction, R target) static <T> MutableByteCollection
IteratorIterate.collectByte
(Iterator<T> iterator, ByteFunction<? super T> byteFunction) static <T,
R extends MutableByteCollection>
RIteratorIterate.collectByte
(Iterator<T> iterator, ByteFunction<? super T> byteFunction, R target) static <T> MutableByteList
RandomAccessListIterate.collectByte
(List<T> list, ByteFunction<? super T> byteFunction) static <T,
R extends MutableByteCollection>
RRandomAccessListIterate.collectByte
(List<T> list, ByteFunction<? super T> byteFunction, R target)