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 ofMaporg.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 theImmutableBaginterface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.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 theMutableBiMapinterface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparatorinterface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction,Predicate,SerializableComparatorandProcedure.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedureandProcedure2.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 theMutableCollectioninterface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.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 theFixedSizeListinterface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.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 theMutableMapinterface.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.immutable org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.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 theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.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 LazyByteIterableLazyIterable. collectByte(ByteFunction<? super T> byteFunction)Returns a lazy ByteIterable which will transform the underlying iterable data to byte values based on the byteFunction.ByteIterableRichIterable. collectByte(ByteFunction<? super T> byteFunction)Returns a new primitivebyteiterable 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 specifiedtargetcollection. -
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 ImmutableByteBagImmutableBag. collectByte(ByteFunction<? super T> byteFunction)default MutableByteBagMutableBag. collectByte(ByteFunction<? super T> byteFunction)ByteBagUnsortedBag. 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 ImmutableByteListImmutableSortedBag. collectByte(ByteFunction<? super T> byteFunction)MutableByteListMutableSortedBag. collectByte(ByteFunction<? super T> byteFunction)ByteListSortedBag. 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 ImmutableByteCollectionImmutableCollection. collectByte(ByteFunction<? super T> byteFunction)default MutableByteCollectionMutableCollection. collectByte(ByteFunction<? super T> byteFunction)Returns a new primitivebyteiterable 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> ImmutableByteBooleanMapImmutableByteBooleanMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableByteByteMapImmutableByteByteMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableByteByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableByteCharMapImmutableByteCharMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableByteDoubleMapImmutableByteDoubleMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableByteFloatMapImmutableByteFloatMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableByteFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableByteIntMapImmutableByteIntMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableByteLongMapImmutableByteLongMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V>
ImmutableByteObjectMap<V>ImmutableByteObjectMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anImmutableByteObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableByteShortMapImmutableByteShortMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharByteMapImmutableCharByteMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleByteMapImmutableDoubleByteMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatByteMapImmutableFloatByteMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntByteMapImmutableIntByteMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableLongByteMapImmutableLongByteMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
ImmutableObjectByteMap<K>ImmutableObjectByteMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableObjectByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortByteMapImmutableShortByteMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableShortByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteBooleanMapMutableByteBooleanMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteByteMapMutableByteByteMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableByteByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteCharMapMutableByteCharMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteDoubleMapMutableByteDoubleMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteFloatMapMutableByteFloatMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableByteFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteIntMapMutableByteIntMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteLongMapMutableByteLongMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V>
MutableByteObjectMap<V>MutableByteObjectMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anMutableByteObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteShortMapMutableByteShortMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharByteMapMutableCharByteMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleByteMapMutableDoubleByteMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatByteMapMutableFloatByteMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntByteMapMutableIntByteMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableLongByteMapMutableLongByteMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableLongByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
MutableObjectByteMap<K>MutableObjectByteMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableObjectByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortByteMapMutableShortByteMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableShortByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction. -
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 ImmutableByteListImmutableList. collectByte(ByteFunction<? super T> byteFunction)ByteListListIterable. collectByte(ByteFunction<? super T> byteFunction)default MutableByteListMutableList. 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 ImmutableByteBagImmutableMap. collectByte(ByteFunction<? super V> byteFunction)ImmutableByteListImmutableOrderedMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagMutableMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteListMutableOrderedMap. collectByte(ByteFunction<? super V> byteFunction)ByteListOrderedMap. collectByte(ByteFunction<? super V> byteFunction)ByteBagUnsortedMapIterable. 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 ImmutableByteBagImmutablePrimitiveObjectMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagMutablePrimitiveObjectMap. collectByte(ByteFunction<? super V> byteFunction)ByteBagPrimitiveObjectMap. collectByte(ByteFunction<? super V> byteFunction)<P> byteMutableByteByteMap. 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> byteMutableCharByteMap. 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> byteMutableDoubleByteMap. 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> byteMutableFloatByteMap. 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> byteMutableIntByteMap. 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> byteMutableLongByteMap. 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> byteMutableObjectByteMap. 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> byteMutableShortByteMap. 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.byteMutableObjectByteMap. 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 ImmutableByteListImmutableSortedMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteListMutableSortedMap. collectByte(ByteFunction<? super V> byteFunction)ByteListSortedMapIterable. 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 OrderedByteIterableOrderedIterable. collectByte(ByteFunction<? super T> byteFunction)ReversibleByteIterableReversibleIterable. 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 ImmutableByteSetImmutableSet. collectByte(ByteFunction<? super T> byteFunction)default MutableByteSetMutableSet. collectByte(ByteFunction<? super T> byteFunction)ByteSetUnsortedSetIterable. 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 ImmutableByteListImmutableSortedSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteListMutableSortedSet. collectByte(ByteFunction<? super T> byteFunction)ByteListSortedSetIterable. 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 ImmutableByteStackImmutableStack. collectByte(ByteFunction<? super T> byteFunction)MutableByteStackMutableStack. collectByte(ByteFunction<? super T> byteFunction)ByteStackStackIterable. 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 ByteIterableUnmodifiableRichIterable. 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 ImmutableByteBagAbstractImmutableBag. collectByte(ByteFunction<? super T> byteFunction)ImmutableByteBagImmutableEmptyBag. 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 MutableByteBagMultiReaderHashBag. collectByte(ByteFunction<? super T> byteFunction)MutableByteBagMultiReaderHashBag.UntouchableMutableBag. collectByte(ByteFunction<? super T> byteFunction)MutableByteBagSynchronizedBag. collectByte(ByteFunction<? super T> byteFunction)MutableByteBagUnmodifiableBag. 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 ImmutableByteListAbstractImmutableSortedBag. 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 MutableByteListAbstractMutableSortedBag. collectByte(ByteFunction<? super T> byteFunction)MutableByteListSynchronizedSortedBag. collectByte(ByteFunction<? super T> byteFunction)MutableByteListUnmodifiableSortedBag. 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 ImmutableByteBagAbstractImmutableBiMap. 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 MutableByteBagAbstractMutableBiMap. collectByte(ByteFunction<? super V> byteFunction)ByteIterableUnmodifiableBiMap. 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. functionConstructors 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 classFunctions.ByteFunctionChain<T1,T2>private static classPrimitiveFunctions.UnboxIntegerToByteprivate static classStringFunctions.ToPrimitiveByteFunctionFields in org.eclipse.collections.impl.block.factory declared as ByteFunction Modifier and Type Field Description private ByteFunction<? super T>HashingStrategies.ByteFunctionHashingStrategy. functionprivate ByteFunction<? super T2>Functions.ByteFunctionChain. function2private static ByteFunction<java.lang.String>StringFunctions. TO_PRIMITIVE_BYTEMethods 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. functionConstructors 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. byteFunctionConstructors 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 ByteIterableAbstractSynchronizedRichIterable. 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)MutableByteCollectionAbstractSynchronizedMutableCollection. collectByte(ByteFunction<? super T> byteFunction)MutableByteCollectionAbstractUnmodifiableMutableCollection. 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 LazyByteIterableAbstractLazyIterable. 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. functionprivate ByteFunction<? super T>CollectByteIterable. functionConstructors 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 ImmutableByteListAbstractImmutableList. 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)MutableByteListMultiReaderFastList. collectByte(ByteFunction<? super T> byteFunction)MutableByteListMultiReaderFastList.UntouchableMutableList. collectByte(ByteFunction<? super T> byteFunction)MutableByteListSynchronizedMutableList. collectByte(ByteFunction<? super T> byteFunction)MutableByteListUnmodifiableMutableList. 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 ImmutableByteBagAbstractImmutableMap. 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 ImmutableByteBagImmutableByteObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableByteObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableByteObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableByteObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableByteObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableByteObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableCharObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableCharObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableCharObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableCharObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableCharObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableCharObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableDoubleObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableDoubleObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableDoubleObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableDoubleObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableDoubleObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableDoubleObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableFloatObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableFloatObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableFloatObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableFloatObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableFloatObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableFloatObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableIntObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableIntObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableIntObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableIntObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableIntObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableIntObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableLongObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableLongObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableLongObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableLongObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableLongObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableLongObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableShortObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableShortObjectEmptyMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableShortObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableShortObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)ImmutableByteBagImmutableShortObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RImmutableShortObjectSingletonMap. collectByte(ByteFunction<? super V> byteFunction, R target)<T> ImmutableByteBooleanMapImmutableByteBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableByteByteMapImmutableByteByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableByteCharMapImmutableByteCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableByteDoubleMapImmutableByteDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableByteFloatMapImmutableByteFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableByteIntMapImmutableByteIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableByteLongMapImmutableByteLongMapFactoryImpl. 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> ImmutableByteShortMapImmutableByteShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableCharByteMapImmutableCharByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableDoubleByteMapImmutableDoubleByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableFloatByteMapImmutableFloatByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableIntByteMapImmutableIntByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableLongByteMapImmutableLongByteMapFactoryImpl. 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> ImmutableShortByteMapImmutableShortByteMapFactoryImpl. 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 MutableByteBagAbstractMutableMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagSynchronizedMutableMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagUnmodifiableMutableMap. 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 MutableByteBagByteObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagCharObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagDoubleObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagFloatObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagIntObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagLongObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagShortObjectHashMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteBagSynchronizedByteObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RSynchronizedByteObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagSynchronizedCharObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RSynchronizedCharObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagSynchronizedDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RSynchronizedDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagSynchronizedFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RSynchronizedFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagSynchronizedIntObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RSynchronizedIntObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagSynchronizedLongObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RSynchronizedLongObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagSynchronizedShortObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RSynchronizedShortObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagUnmodifiableByteObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RUnmodifiableByteObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagUnmodifiableCharObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RUnmodifiableCharObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagUnmodifiableDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RUnmodifiableDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagUnmodifiableFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RUnmodifiableFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagUnmodifiableIntObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RUnmodifiableIntObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagUnmodifiableLongObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RUnmodifiableLongObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)MutableByteBagUnmodifiableShortObjectMap. collectByte(ByteFunction<? super V> byteFunction)<R extends MutableByteCollection>
RUnmodifiableShortObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)<T> MutableByteBooleanMapMutableByteBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableByteByteMapMutableByteByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableByteCharMapMutableByteCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableByteDoubleMapMutableByteDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableByteFloatMapMutableByteFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableByteIntMapMutableByteIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableByteLongMapMutableByteLongMapFactoryImpl. 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> MutableByteShortMapMutableByteShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableCharByteMapMutableCharByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableDoubleByteMapMutableDoubleByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableFloatByteMapMutableFloatByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableIntByteMapMutableIntByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableLongByteMapMutableLongByteMapFactoryImpl. 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> MutableShortByteMapMutableShortByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<P> byteByteByteHashMap. getIfAbsentPutWith(byte key, ByteFunction<? super P> function, P parameter)<P> byteCharByteHashMap. getIfAbsentPutWith(char key, ByteFunction<? super P> function, P parameter)<P> byteDoubleByteHashMap. getIfAbsentPutWith(double key, ByteFunction<? super P> function, P parameter)<P> byteFloatByteHashMap. getIfAbsentPutWith(float key, ByteFunction<? super P> function, P parameter)<P> byteIntByteHashMap. getIfAbsentPutWith(int key, ByteFunction<? super P> function, P parameter)<P> byteLongByteHashMap. getIfAbsentPutWith(long key, ByteFunction<? super P> function, P parameter)<P> byteObjectByteHashMap. getIfAbsentPutWith(K key, ByteFunction<? super P> function, P parameter)<P> byteObjectByteHashMapWithHashingStrategy. getIfAbsentPutWith(K key, ByteFunction<? super P> function, P parameter)<P> byteShortByteHashMap. getIfAbsentPutWith(short key, ByteFunction<? super P> function, P parameter)<P> byteSynchronizedByteByteMap. getIfAbsentPutWith(byte key, ByteFunction<? super P> function, P parameter)<P> byteSynchronizedCharByteMap. getIfAbsentPutWith(char key, ByteFunction<? super P> function, P parameter)<P> byteSynchronizedDoubleByteMap. getIfAbsentPutWith(double key, ByteFunction<? super P> function, P parameter)<P> byteSynchronizedFloatByteMap. getIfAbsentPutWith(float key, ByteFunction<? super P> function, P parameter)<P> byteSynchronizedIntByteMap. getIfAbsentPutWith(int key, ByteFunction<? super P> function, P parameter)<P> byteSynchronizedLongByteMap. getIfAbsentPutWith(long key, ByteFunction<? super P> function, P parameter)<P> byteSynchronizedObjectByteMap. getIfAbsentPutWith(K key, ByteFunction<? super P> function, P parameter)<P> byteSynchronizedShortByteMap. getIfAbsentPutWith(short key, ByteFunction<? super P> function, P parameter)<P> byteUnmodifiableByteByteMap. getIfAbsentPutWith(byte key, ByteFunction<? super P> function, P parameter)<P> byteUnmodifiableCharByteMap. getIfAbsentPutWith(char key, ByteFunction<? super P> function, P parameter)<P> byteUnmodifiableDoubleByteMap. getIfAbsentPutWith(double key, ByteFunction<? super P> function, P parameter)<P> byteUnmodifiableFloatByteMap. getIfAbsentPutWith(float key, ByteFunction<? super P> function, P parameter)<P> byteUnmodifiableIntByteMap. getIfAbsentPutWith(int key, ByteFunction<? super P> function, P parameter)<P> byteUnmodifiableLongByteMap. getIfAbsentPutWith(long key, ByteFunction<? super P> function, P parameter)<P> byteUnmodifiableObjectByteMap. getIfAbsentPutWith(K key, ByteFunction<? super P> function, P parameter)<P> byteUnmodifiableShortByteMap. getIfAbsentPutWith(short key, ByteFunction<? super P> function, P parameter)byteObjectByteHashMap. getIfAbsentPutWithKey(K key, ByteFunction<? super K> function)byteObjectByteHashMapWithHashingStrategy. getIfAbsentPutWithKey(K key, ByteFunction<? super K> function)byteSynchronizedObjectByteMap. getIfAbsentPutWithKey(K key, ByteFunction<? super K> function)byteUnmodifiableObjectByteMap. getIfAbsentPutWithKey(K key, ByteFunction<? super K> function) -
Uses of ByteFunction in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type ByteFunction Modifier and Type Method Description ImmutableByteListImmutableOrderedMapAdapter. collectByte(ByteFunction<? super V> byteFunction) -
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 MutableByteListOrderedMapAdapter. collectByte(ByteFunction<? super V> byteFunction)MutableByteListUnmodifiableMutableOrderedMap. 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 ImmutableByteListAbstractImmutableSortedMap. 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 MutableByteListAbstractMutableSortedMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteListSynchronizedSortedMap. collectByte(ByteFunction<? super V> byteFunction)MutableByteListUnmodifiableTreeMap. 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 ImmutableByteSetAbstractImmutableSet. 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 MutableByteSetMultiReaderUnifiedSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteSetMultiReaderUnifiedSet.UntouchableMutableSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteSetSynchronizedMutableSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteSetUnmodifiableMutableSet. 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 ImmutableByteListAbstractImmutableSortedSet. 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 MutableByteListSortedSetAdapter. collectByte(ByteFunction<? super T> byteFunction)MutableByteListSynchronizedSortedSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteListTreeSortedSet. collectByte(ByteFunction<? super T> byteFunction)MutableByteListUnmodifiableSortedSet. 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 ImmutableByteStackImmutableArrayStack. collectByte(ByteFunction<? super T> byteFunction)Deprecated.<R extends MutableByteCollection>
RImmutableArrayStack. collectByte(ByteFunction<? super T> byteFunction, R target)Deprecated.ImmutableByteStackImmutableEmptyStack. collectByte(ByteFunction<? super T> byteFunction)<R extends MutableByteCollection>
RImmutableEmptyStack. collectByte(ByteFunction<? super T> byteFunction, R target)ImmutableByteStackImmutableNotEmptyStack. 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 MutableByteStackArrayStack. collectByte(ByteFunction<? super T> byteFunction)<R extends MutableByteCollection>
RArrayStack. collectByte(ByteFunction<? super T> byteFunction, R target)MutableByteStackSynchronizedStack. collectByte(ByteFunction<? super T> byteFunction)<R extends MutableByteCollection>
RSynchronizedStack. collectByte(ByteFunction<? super T> byteFunction, R target)MutableByteStackUnmodifiableStack. 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> MutableByteListArrayIterate. collectByte(T[] objectArray, ByteFunction<? super T> byteFunction)static <T,R extends MutableByteCollection>
RArrayIterate. collectByte(T[] objectArray, ByteFunction<? super T> byteFunction, R target)static <T> MutableByteListArrayListIterate. 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> MutableByteCollectionIterate. collectByte(java.lang.Iterable<T> iterable, ByteFunction<? super T> byteFunction)Returns a newbytecollection 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 specifiedtargetcollection.static <T> MutableByteListListIterate. 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 <R extends MutableByteCollection,T>
RInternalArrayIterate. collectByte(T[] items, int size, ByteFunction<? super T> byteFunction, R target)Adds all array elements to the target MutableByteCollection after using the function supplied to convert each source element to the appropriate typestatic <T> MutableByteCollectionIterableIterate. 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> MutableByteCollectionIteratorIterate. 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> MutableByteListRandomAccessListIterate. 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)
-