Uses of Interface
org.eclipse.collections.api.block.function.primitive.ByteFunction
-
Packages that use ByteFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
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.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparator
interface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedure
andProcedure2
.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.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 This package contains implementations of theMutableMap
interface.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.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet
.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal 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 ByteFunction Modifier and Type Method Description LazyByteIterable
LazyIterable. collectByte(ByteFunction<? super T> byteFunction)
Returns a lazy ByteIterable which will transform the underlying iterable data to byte values based on the byteFunction.ByteIterable
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 ByteFunction Modifier and Type Method Description ImmutableByteBag
ImmutableBag. collectByte(ByteFunction<? super T> byteFunction)
default MutableByteBag
MutableBag. collectByte(ByteFunction<? super T> byteFunction)
ByteBag
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 ByteFunction Modifier and Type Method Description ImmutableByteList
ImmutableSortedBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
MutableSortedBag. collectByte(ByteFunction<? super T> byteFunction)
ByteList
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 ByteFunction Modifier and Type Method Description ImmutableByteCollection
ImmutableCollection. 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 ByteFunction Modifier and Type Method Description <T> ImmutableByteBooleanMap
ImmutableByteBooleanMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableByteByteMap
ImmutableByteByteMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableByteByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableByteCharMap
ImmutableByteCharMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableByteDoubleMap
ImmutableByteDoubleMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableByteDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableByteFloatMap
ImmutableByteFloatMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableByteFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableByteIntMap
ImmutableByteIntMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableByteLongMap
ImmutableByteLongMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableByteObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableByteShortMap
ImmutableByteShortMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableByteShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharByteMap
ImmutableCharByteMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableCharByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableDoubleByteMap
ImmutableDoubleByteMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableDoubleByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatByteMap
ImmutableFloatByteMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableFloatByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntByteMap
ImmutableIntByteMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableIntByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableLongByteMap
ImmutableLongByteMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableObjectByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortByteMap
ImmutableShortByteMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteBooleanMap
MutableByteBooleanMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteByteMap
MutableByteByteMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableByteByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteCharMap
MutableByteCharMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteDoubleMap
MutableByteDoubleMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableByteDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteFloatMap
MutableByteFloatMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableByteFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteIntMap
MutableByteIntMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteLongMap
MutableByteLongMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anMutableByteObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteShortMap
MutableByteShortMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableByteShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharByteMap
MutableCharByteMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableCharByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableDoubleByteMap
MutableDoubleByteMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableDoubleByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatByteMap
MutableFloatByteMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableFloatByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntByteMap
MutableIntByteMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableIntByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableLongByteMap
MutableLongByteMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableObjectByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortByteMap
MutableShortByteMapFactory. from(java.lang.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 ByteFunction Modifier and Type Method Description ImmutableByteList
ImmutableList. collectByte(ByteFunction<? super T> byteFunction)
ByteList
ListIterable. collectByte(ByteFunction<? super T> byteFunction)
default MutableByteList
MutableList. collectByte(ByteFunction<? super T> byteFunction)
MultiReaderList<T>
MultiReaderList. sortThisByByte(ByteFunction<? super T> function)
MutableList<T>
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 ByteFunction Modifier and Type Method Description ImmutableByteBag
ImmutableMap. collectByte(ByteFunction<? super V> byteFunction)
ImmutableByteList
ImmutableOrderedMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
MutableMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteList
MutableOrderedMap. collectByte(ByteFunction<? super V> byteFunction)
ByteList
OrderedMap. collectByte(ByteFunction<? super V> byteFunction)
ByteBag
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 ByteFunction Modifier and Type Method Description ImmutableByteBag
ImmutablePrimitiveObjectMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
MutablePrimitiveObjectMap. collectByte(ByteFunction<? super V> byteFunction)
ByteBag
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 ByteFunction Modifier and Type Method Description ImmutableByteList
ImmutableSortedMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteList
MutableSortedMap. collectByte(ByteFunction<? super V> byteFunction)
ByteList
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 ByteFunction Modifier and Type Method Description OrderedByteIterable
OrderedIterable. collectByte(ByteFunction<? super T> byteFunction)
ReversibleByteIterable
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 ByteFunction Modifier and Type Method Description ImmutableByteSet
ImmutableSet. collectByte(ByteFunction<? super T> byteFunction)
default MutableByteSet
MutableSet. collectByte(ByteFunction<? super T> byteFunction)
ByteSet
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 ByteFunction Modifier and Type Method Description ImmutableByteList
ImmutableSortedSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
MutableSortedSet. collectByte(ByteFunction<? super T> byteFunction)
ByteList
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 ByteFunction Modifier and Type Method Description ImmutableByteStack
ImmutableStack. collectByte(ByteFunction<? super T> byteFunction)
MutableByteStack
MutableStack. collectByte(ByteFunction<? super T> byteFunction)
ByteStack
StackIterable. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of ByteFunction in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type ByteFunction Modifier and Type Method Description ByteIterable
UnmodifiableRichIterable. 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 ByteFunction Modifier and Type Method Description <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 ByteFunction Modifier and Type Method Description ImmutableByteBag
AbstractImmutableBag. collectByte(ByteFunction<? super T> byteFunction)
ImmutableByteBag
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 ByteFunction Modifier and Type Method Description MutableByteBag
MultiReaderHashBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteBag
MultiReaderHashBag.UntouchableMutableBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteBag
SynchronizedBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteBag
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 ByteFunction Modifier and Type Method Description ImmutableByteList
AbstractImmutableSortedBag. 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 ByteFunction Modifier and Type Method Description MutableByteList
AbstractMutableSortedBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
SynchronizedSortedBag. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
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 ByteFunction Modifier and Type Method Description <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 ByteFunction Modifier and Type Method Description ImmutableByteBag
AbstractImmutableBiMap. 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 ByteFunction Modifier and Type Method Description MutableByteBag
AbstractMutableBiMap. collectByte(ByteFunction<? super V> byteFunction)
ByteIterable
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 ByteFunction Modifier and Type Field Description private ByteFunction<T>
ByteFunctionComparator. function
Constructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type ByteFunction Constructor Description ByteFunctionComparator(ByteFunction<T> function)
-
Uses of ByteFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement ByteFunction Modifier and Type Class Description static class
Functions.ByteFunctionChain<T1,T2>
private static class
PrimitiveFunctions.UnboxIntegerToByte
private static class
StringFunctions.ToPrimitiveByteFunction
Fields in org.eclipse.collections.impl.block.factory declared as ByteFunction Modifier and Type Field Description private ByteFunction<? super T>
HashingStrategies.ByteFunctionHashingStrategy. function
private ByteFunction<? super T2>
Functions.ByteFunctionChain. function2
private static ByteFunction<java.lang.String>
StringFunctions. TO_PRIMITIVE_BYTE
Methods in org.eclipse.collections.impl.block.factory that return ByteFunction Modifier and Type Method Description static ByteFunction<java.lang.String>
StringFunctions. toPrimitiveByte()
static ByteFunction<java.lang.Integer>
PrimitiveFunctions. unboxIntegerToByte()
Methods in org.eclipse.collections.impl.block.factory with parameters of type ByteFunction Modifier and Type Method Description static <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.ByteFunctionChain<T1,T3>
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 ByteFunction Constructor Description ByteFunctionChain(Function<T1,T2> function1, ByteFunction<? super T2> function2)
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 ByteFunction Modifier and Type Field Description protected ByteFunction<? super T>
SumOfByteProcedure. function
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type ByteFunction Constructor Description SumOfByteProcedure(ByteFunction<? super T> function)
-
Uses of ByteFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as ByteFunction Modifier and Type Field Description private ByteFunction<? super T>
CollectByteProcedure. byteFunction
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type ByteFunction Constructor Description CollectByteProcedure(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 ByteFunction Modifier and Type Method Description ByteIterable
AbstractSynchronizedRichIterable. 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 ByteFunction Modifier and Type Method Description <R extends MutableByteCollection>
RAbstractCollectionAdapter. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RAbstractMultiReaderMutableCollection. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectByte(ByteFunction<? super T> byteFunction, R target)
MutableByteCollection
AbstractSynchronizedMutableCollection. collectByte(ByteFunction<? super T> byteFunction)
MutableByteCollection
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 ByteFunction Modifier and Type Method Description static <T,R extends MutableByteCollection>
java.util.stream.Collector<T,?,R>Collectors2. collectByte(ByteFunction<? super T> function, java.util.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 ByteFunction Modifier and Type Method Description LazyByteIterable
AbstractLazyIterable. 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 ByteFunction Modifier and Type Field Description private ByteFunction<? super T>
CollectByteIterable.ByteFunctionToProcedure. function
private ByteFunction<? super T>
CollectByteIterable. function
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type ByteFunction Constructor Description 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 ByteFunction Modifier and Type Method Description MutableList<T>
EmptyList. sortThisByByte(ByteFunction<? super T> function)
MutableList<T>
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 ByteFunction Modifier and Type Method Description ImmutableByteList
AbstractImmutableList. 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 ByteFunction Modifier and Type Method Description <R extends MutableByteCollection>
RFastList. collectByte(ByteFunction<? super T> byteFunction, R target)
MutableByteList
MultiReaderFastList. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
MultiReaderFastList.UntouchableMutableList. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
SynchronizedMutableList. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
UnmodifiableMutableList. collectByte(ByteFunction<? super T> byteFunction)
MutableList<T>
AbstractListAdapter. sortThisByByte(ByteFunction<? super T> function)
MutableList<T>
AbstractMutableList. sortThisByByte(ByteFunction<? super T> function)
MultiReaderList<T>
MultiReaderFastList. sortThisByByte(ByteFunction<? super T> function)
MutableList<T>
MultiReaderFastList.UntouchableMutableList. sortThisByByte(ByteFunction<? super T> function)
MutableList<T>
SynchronizedMutableList. sortThisByByte(ByteFunction<? super T> function)
MutableList<T>
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 ByteFunction Modifier and Type Method Description ImmutableByteBag
AbstractImmutableMap. 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 ByteFunction Modifier and Type Method Description ImmutableByteBag
ImmutableByteObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableByteObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableByteObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableByteObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableByteObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableByteObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableCharObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableCharObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableCharObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableCharObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableCharObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableCharObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableDoubleObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableDoubleObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableDoubleObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableDoubleObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableDoubleObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableDoubleObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableFloatObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableFloatObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableFloatObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableFloatObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableFloatObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableFloatObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableIntObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableIntObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableIntObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableIntObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableIntObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableIntObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableLongObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableLongObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableLongObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableLongObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableLongObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableLongObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableShortObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableShortObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableShortObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableShortObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
ImmutableByteBag
ImmutableShortObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RImmutableShortObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<T> ImmutableByteBooleanMap
ImmutableByteBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> ImmutableByteByteMap
ImmutableByteByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> ImmutableByteCharMap
ImmutableByteCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> ImmutableByteDoubleMap
ImmutableByteDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
<T> ImmutableByteFloatMap
ImmutableByteFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> ImmutableByteIntMap
ImmutableByteIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> ImmutableByteLongMap
ImmutableByteLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
<T,V>
ImmutableByteObjectMap<V>ImmutableByteObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<T> ImmutableByteShortMap
ImmutableByteShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> ImmutableCharByteMap
ImmutableCharByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> ImmutableDoubleByteMap
ImmutableDoubleByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> ImmutableFloatByteMap
ImmutableFloatByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> ImmutableIntByteMap
ImmutableIntByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> ImmutableLongByteMap
ImmutableLongByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T,K>
ImmutableObjectByteMap<K>ImmutableObjectByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)
<T> ImmutableShortByteMap
ImmutableShortByteMapFactoryImpl. from(java.lang.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 ByteFunction Modifier and Type Method Description MutableByteBag
AbstractMutableMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
SynchronizedMutableMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
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 ByteFunction Modifier and Type Method Description MutableByteBag
ByteObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
CharObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
DoubleObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
FloatObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
IntObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
LongObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
ShortObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteBag
SynchronizedByteObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RSynchronizedByteObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
SynchronizedCharObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RSynchronizedCharObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
SynchronizedDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RSynchronizedDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
SynchronizedFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RSynchronizedFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
SynchronizedIntObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RSynchronizedIntObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
SynchronizedLongObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RSynchronizedLongObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
SynchronizedShortObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RSynchronizedShortObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
UnmodifiableByteObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RUnmodifiableByteObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
UnmodifiableCharObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RUnmodifiableCharObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
UnmodifiableDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RUnmodifiableDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
UnmodifiableFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RUnmodifiableFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
UnmodifiableIntObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RUnmodifiableIntObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
UnmodifiableLongObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RUnmodifiableLongObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
MutableByteBag
UnmodifiableShortObjectMap. collectByte(ByteFunction<? super V> byteFunction)
<R extends MutableByteCollection>
RUnmodifiableShortObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<T> MutableByteBooleanMap
MutableByteBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> MutableByteByteMap
MutableByteByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> MutableByteCharMap
MutableByteCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> MutableByteDoubleMap
MutableByteDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
<T> MutableByteFloatMap
MutableByteFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> MutableByteIntMap
MutableByteIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> MutableByteLongMap
MutableByteLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
<T,V>
MutableByteObjectMap<V>MutableByteObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<T> MutableByteShortMap
MutableByteShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> MutableCharByteMap
MutableCharByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> MutableDoubleByteMap
MutableDoubleByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> MutableFloatByteMap
MutableFloatByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> MutableIntByteMap
MutableIntByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> MutableLongByteMap
MutableLongByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T,K>
MutableObjectByteMap<K>MutableObjectByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)
<T> MutableShortByteMap
MutableShortByteMapFactoryImpl. from(java.lang.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 ByteFunction Modifier and Type Method Description MutableByteList
OrderedMapAdapter. collectByte(ByteFunction<? super V> byteFunction)
MutableByteList
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 ByteFunction Modifier and Type Method Description ImmutableByteList
AbstractImmutableSortedMap. 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 ByteFunction Modifier and Type Method Description MutableByteList
AbstractMutableSortedMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteList
SynchronizedSortedMap. collectByte(ByteFunction<? super V> byteFunction)
MutableByteList
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 ByteFunction Modifier and Type Method Description ImmutableByteSet
AbstractImmutableSet. 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 ByteFunction Modifier and Type Method Description MutableByteSet
MultiReaderUnifiedSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteSet
MultiReaderUnifiedSet.UntouchableMutableSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteSet
SynchronizedMutableSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteSet
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 ByteFunction Modifier and Type Method Description ImmutableByteList
AbstractImmutableSortedSet. 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 ByteFunction Modifier and Type Method Description MutableByteList
SortedSetAdapter. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
SynchronizedSortedSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
TreeSortedSet. collectByte(ByteFunction<? super T> byteFunction)
MutableByteList
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 ByteFunction Modifier and Type Method Description ImmutableByteStack
ImmutableArrayStack. collectByte(ByteFunction<? super T> byteFunction)
Deprecated.<R extends MutableByteCollection>
RImmutableArrayStack. collectByte(ByteFunction<? super T> byteFunction, R target)
Deprecated.ImmutableByteStack
ImmutableEmptyStack. collectByte(ByteFunction<? super T> byteFunction)
<R extends MutableByteCollection>
RImmutableEmptyStack. collectByte(ByteFunction<? super T> byteFunction, R target)
ImmutableByteStack
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 ByteFunction Modifier and Type Method Description MutableByteStack
ArrayStack. collectByte(ByteFunction<? super T> byteFunction)
<R extends MutableByteCollection>
RArrayStack. collectByte(ByteFunction<? super T> byteFunction, R target)
MutableByteStack
SynchronizedStack. collectByte(ByteFunction<? super T> byteFunction)
<R extends MutableByteCollection>
RSynchronizedStack. collectByte(ByteFunction<? super T> byteFunction, R target)
MutableByteStack
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 ByteFunction Modifier and Type Method Description static <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(java.util.ArrayList<T> list, ByteFunction<? super T> byteFunction)
static <T,R extends MutableByteCollection>
RArrayListIterate. collectByte(java.util.ArrayList<T> list, ByteFunction<? super T> byteFunction, R target)
static <T> MutableByteCollection
Iterate. collectByte(java.lang.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(java.lang.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(java.util.List<T> list, ByteFunction<? super T> byteFunction)
static <T,R extends MutableByteCollection>
RListIterate. collectByte(java.util.List<T> list, ByteFunction<? super T> byteFunction, R target)
static <K,V>
MutableByteCollectionMapIterate. collectByte(java.util.Map<K,V> map, ByteFunction<? super V> byteFunction)
static <K,V,R extends MutableByteCollection>
RMapIterate. collectByte(java.util.Map<K,V> map, ByteFunction<? super V> byteFunction, R target)
private static <T,R extends MutableByteCollection>
RArrayListIterate. collectByteFromInternalArray(java.util.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 ByteFunction Modifier and Type Method Description static <T> MutableByteCollection
IterableIterate. collectByte(java.lang.Iterable<T> iterable, ByteFunction<? super T> byteFunction)
static <T,R extends MutableByteCollection>
RIterableIterate. collectByte(java.lang.Iterable<T> iterable, ByteFunction<? super T> byteFunction, R target)
static <T> MutableByteCollection
IteratorIterate. collectByte(java.util.Iterator<T> iterator, ByteFunction<? super T> byteFunction)
static <T,R extends MutableByteCollection>
RIteratorIterate. collectByte(java.util.Iterator<T> iterator, ByteFunction<? super T> byteFunction, R target)
static <T> MutableByteList
RandomAccessListIterate. collectByte(java.util.List<T> list, ByteFunction<? super T> byteFunction)
static <T,R extends MutableByteCollection>
RRandomAccessListIterate. collectByte(java.util.List<T> list, ByteFunction<? super T> byteFunction, R target)
-