Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableByteCollection
Package | Description |
---|---|
org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
org.eclipse.collections.api.collection | |
org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
org.eclipse.collections.impl.bag | |
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
org.eclipse.collections.impl.bimap | |
org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
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 the
MutableCollection interface. |
org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
org.eclipse.collections.impl.collector | |
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap 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.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack 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.
|
org.eclipse.collections.impl.utility.internal.primitive |
-
Uses of MutableByteCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableByteCollection Modifier and Type Method Description default <R extends MutableByteCollection>
RBooleanIterable. collectByte(BooleanToByteFunction function, R target)
Returns the targetMutableByteCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RByteIterable. collectByte(ByteToByteFunction function, R target)
Returns the targetMutableByteCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RCharIterable. collectByte(CharToByteFunction function, R target)
Returns the targetMutableByteCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RDoubleIterable. collectByte(DoubleToByteFunction function, R target)
Returns the targetMutableByteCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RFloatIterable. collectByte(FloatToByteFunction function, R target)
Returns the targetMutableByteCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RIntIterable. collectByte(IntToByteFunction function, R target)
Returns the targetMutableByteCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RLongIterable. collectByte(LongToByteFunction function, R target)
Returns the targetMutableByteCollection
with the results of applying the specified function on each element of the source collection.<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.default <R extends MutableByteCollection>
RShortIterable. collectByte(ShortToByteFunction function, R target)
Returns the targetMutableByteCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RRichIterable. flatCollectByte(Function<? super T,? extends ByteIterable> function, R target)
Same as flatCollect, only the results are collected into the target collection.default <R extends MutableByteCollection>
RByteIterable. reject(BytePredicate predicate, R target)
Same asByteIterable.reject(BytePredicate)
, only the results are added to the target MutableByteCollection.default <R extends MutableByteCollection>
RByteIterable. select(BytePredicate predicate, R target)
Same asByteIterable.select(BytePredicate)
, only the results are added to the target MutableByteCollection. -
Uses of MutableByteCollection in org.eclipse.collections.api.bag.primitive
Subinterfaces of MutableByteCollection in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interface
MutableByteBag
This file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableByteCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableByteCollection Modifier and Type Method Description 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 MutableByteCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableByteCollection Modifier and Type Method Description MutableByteCollection
MutableByteCollection. asSynchronized()
MutableByteCollection
MutableByteCollection. asUnmodifiable()
default MutableByteCollection
MutableByteCollection. newEmpty()
Creates a new empty mutable version of the same collection type.MutableByteCollection
MutableByteCollection. reject(BytePredicate predicate)
MutableByteCollection
MutableByteCollection. select(BytePredicate predicate)
default MutableByteCollection
MutableByteCollection. tap(ByteProcedure procedure)
MutableByteCollection
MutableByteCollection. with(byte element)
MutableByteCollection
MutableByteCollection. withAll(ByteIterable elements)
MutableByteCollection
MutableByteCollection. without(byte element)
MutableByteCollection
MutableByteCollection. withoutAll(ByteIterable elements)
-
Uses of MutableByteCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableByteCollection in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
MutableByteList
This file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableByteCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteCollection Modifier and Type Method Description MutableByteCollection
MutableObjectByteMap. reject(BytePredicate predicate)
MutableByteCollection
MutableObjectByteMap. select(BytePredicate predicate)
MutableByteCollection
ByteValuesMap. values()
Returns the values in this map as a separate collection.MutableByteCollection
ObjectByteMap. values()
Returns the values in this map as a separate collection. -
Uses of MutableByteCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableByteCollection in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interface
MutableByteSet
This file was automatically generated from template file mutablePrimitiveSet.stg. -
Uses of MutableByteCollection in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RAbstractRichIterable. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableRichIterable. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableRichIterable. flatCollectByte(Function<? super T,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RAbstractBag. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RAbstractBag. flatCollectByte(Function<? super T,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableByteCollection Modifier and Type Class Description class
ByteHashBag
ByteHashBag is similar toHashBag
, and is memory-optimized for byte primitives.class
SynchronizedByteBag
A synchronized view of aMutableByteBag
.class
UnmodifiableByteBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg. -
Uses of MutableByteCollection in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RAbstractBiMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RAbstractBiMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RUnmodifiableBiMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableBiMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.block.procedure.primitive
Methods in org.eclipse.collections.impl.block.procedure.primitive that return MutableByteCollection Modifier and Type Method Description MutableByteCollection
CollectByteProcedure. getByteCollection()
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableByteCollection Constructor Description CollectByteProcedure(ByteFunction<? super T> byteFunction, MutableByteCollection targetCollection)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RAbstractSynchronizedRichIterable. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RAbstractSynchronizedRichIterable. flatCollectByte(Function<? super T,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with type parameters of type MutableByteCollection 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>
RAbstractUnmodifiableMutableCollection. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RAbstractMultiReaderMutableCollection. flatCollectByte(Function<? super T,? extends ByteIterable> function, R target)
<R extends MutableByteCollection>
RAbstractUnmodifiableMutableCollection. flatCollectByte(Function<? super T,? extends ByteIterable> function, R target)
Methods in org.eclipse.collections.impl.collection.mutable that return MutableByteCollection Modifier and Type Method Description MutableByteCollection
AbstractCollectionAdapter. collectByte(ByteFunction<? super T> byteFunction)
MutableByteCollection
AbstractSynchronizedMutableCollection. collectByte(ByteFunction<? super T> byteFunction)
MutableByteCollection
AbstractUnmodifiableMutableCollection. collectByte(ByteFunction<? super T> byteFunction)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement MutableByteCollection Modifier and Type Class Description class
AbstractSynchronizedByteCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableByteCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedByteCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableByteCollection
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableByteCollection Modifier and Type Method Description MutableByteCollection
AbstractSynchronizedByteCollection. asSynchronized()
MutableByteCollection
AbstractUnmodifiableByteCollection. asSynchronized()
MutableByteCollection
AbstractSynchronizedByteCollection. asUnmodifiable()
MutableByteCollection
AbstractUnmodifiableByteCollection. asUnmodifiable()
MutableByteCollection
SynchronizedByteCollection. newEmpty()
MutableByteCollection
UnmodifiableByteCollection. newEmpty()
MutableByteCollection
AbstractSynchronizedByteCollection. reject(BytePredicate predicate)
MutableByteCollection
AbstractUnmodifiableByteCollection. reject(BytePredicate predicate)
MutableByteCollection
AbstractSynchronizedByteCollection. select(BytePredicate predicate)
MutableByteCollection
AbstractUnmodifiableByteCollection. select(BytePredicate predicate)
MutableByteCollection
AbstractSynchronizedByteCollection. with(byte element)
MutableByteCollection
AbstractUnmodifiableByteCollection. with(byte element)
MutableByteCollection
AbstractSynchronizedByteCollection. withAll(ByteIterable elements)
MutableByteCollection
AbstractUnmodifiableByteCollection. withAll(ByteIterable elements)
MutableByteCollection
AbstractSynchronizedByteCollection. without(byte element)
MutableByteCollection
AbstractUnmodifiableByteCollection. without(byte element)
MutableByteCollection
AbstractSynchronizedByteCollection. withoutAll(ByteIterable elements)
MutableByteCollection
AbstractUnmodifiableByteCollection. withoutAll(ByteIterable elements)
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableByteCollection Modifier and Type Method Description static SynchronizedByteCollection
SynchronizedByteCollection. of(MutableByteCollection collection)
This method will take a MutableByteCollection and wrap it directly in a SynchronizedByteCollection.static SynchronizedByteCollection
SynchronizedByteCollection. of(MutableByteCollection collection, Object lock)
This method will take a MutableByteCollection and wrap it directly in a SynchronizedByteCollection.static UnmodifiableByteCollection
UnmodifiableByteCollection. of(MutableByteCollection collection)
This method will take a MutableByteCollection and wrap it directly in a UnmodifiableByteCollection. -
Uses of MutableByteCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableByteCollection Modifier and Type Method Description static <T, R extends MutableByteCollection>
Collector<T,?,R>Collectors2. collectByte(ByteFunction<? super T> function, Supplier<R> supplier)
Returns a new MutableByteCollection with the results of applying the specified ByteFunction on each element of the source. -
Uses of MutableByteCollection in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RFastList. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RFastList. flatCollectByte(Function<? super T,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableByteCollection Modifier and Type Class Description class
ByteArrayList
ByteArrayList is similar toFastList
, and is memory-optimized for byte primitives.class
SynchronizedByteList
A synchronized view of aMutableByteList
.class
UnmodifiableByteList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RByteArrayList. reject(BytePredicate predicate, R target)
<R extends MutableByteCollection>
RByteArrayList. select(BytePredicate predicate, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RUnmodifiableMutableMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableMutableMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteCollection Modifier and Type Class Description class
AbstractMutableByteKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RByteObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RCharObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RDoubleObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RFloatObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RIntObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RLongObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RShortObjectHashMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RSynchronizedByteObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RSynchronizedCharObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RSynchronizedDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RSynchronizedFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RSynchronizedIntObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RSynchronizedLongObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RSynchronizedShortObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableByteObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableCharObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableDoubleObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableFloatObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableIntObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableLongObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableShortObjectMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RSynchronizedByteObjectMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
<R extends MutableByteCollection>
RSynchronizedCharObjectMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
<R extends MutableByteCollection>
RSynchronizedDoubleObjectMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
<R extends MutableByteCollection>
RSynchronizedFloatObjectMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
<R extends MutableByteCollection>
RSynchronizedIntObjectMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
<R extends MutableByteCollection>
RSynchronizedLongObjectMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
<R extends MutableByteCollection>
RSynchronizedShortObjectMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RUnmodifiableMutableOrderedMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableMutableOrderedMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RUnmodifiableTreeMap. collectByte(ByteFunction<? super V> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableTreeMap. flatCollectByte(Function<? super V,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableByteCollection Modifier and Type Class Description class
ByteHashSet
class
SynchronizedByteSet
A synchronized view of aMutableByteSet
.class
UnmodifiableByteSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg. -
Uses of MutableByteCollection in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableByteCollection Modifier and Type Method Description <R extends MutableByteCollection>
RArrayStack. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RSynchronizedStack. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RUnmodifiableStack. collectByte(ByteFunction<? super T> byteFunction, R target)
<R extends MutableByteCollection>
RArrayStack. flatCollectByte(Function<? super T,? extends ByteIterable> function, R target)
<R extends MutableByteCollection>
RSynchronizedStack. flatCollectByte(Function<? super T,? extends ByteIterable> function, R target)
<R extends MutableByteCollection>
RUnmodifiableStack. flatCollectByte(Function<? super T,? extends ByteIterable> function, R target)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableByteCollection Modifier and Type Method Description static <T, R extends MutableByteCollection>
RArrayIterate. collectByte(T[] objectArray, ByteFunction<? super T> byteFunction, R target)
static <T, R extends MutableByteCollection>
RArrayListIterate. collectByte(ArrayList<T> list, ByteFunction<? super T> byteFunction, R target)
static <T, R extends MutableByteCollection>
RIterate. collectByte(Iterable<T> iterable, ByteFunction<? super T> byteFunction, R target)
Same asIterate.collectByte(Iterable, ByteFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T, R extends MutableByteCollection>
RListIterate. collectByte(List<T> list, ByteFunction<? super T> byteFunction, R target)
static <K, V, R extends MutableByteCollection>
RMapIterate. collectByte(Map<K,V> map, ByteFunction<? super V> byteFunction, R target)
Methods in org.eclipse.collections.impl.utility that return MutableByteCollection Modifier and Type Method Description static <T> MutableByteCollection
Iterate. collectByte(Iterable<T> iterable, ByteFunction<? super T> byteFunction)
Returns a newbyte
collection with the results of applying the specified byteFunction for each element of the iterable.static <K, V> MutableByteCollection
MapIterate. collectByte(Map<K,V> map, ByteFunction<? super V> byteFunction)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableByteCollection Modifier and Type Method Description static <T, R extends MutableByteCollection>
RIterableIterate. collectByte(Iterable<T> iterable, ByteFunction<? super T> byteFunction, R target)
static <T, R extends MutableByteCollection>
RIteratorIterate. collectByte(Iterator<T> iterator, ByteFunction<? super T> byteFunction, R target)
static <T, R extends MutableByteCollection>
RRandomAccessListIterate. collectByte(List<T> list, ByteFunction<? super T> byteFunction, R target)
Methods in org.eclipse.collections.impl.utility.internal that return MutableByteCollection Modifier and Type Method Description static <T> MutableByteCollection
IterableIterate. collectByte(Iterable<T> iterable, ByteFunction<? super T> byteFunction)
static <T> MutableByteCollection
IteratorIterate. collectByte(Iterator<T> iterator, ByteFunction<? super T> byteFunction)
-
Uses of MutableByteCollection in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with type parameters of type MutableByteCollection Modifier and Type Method Description static <R extends MutableByteCollection>
RByteIterableIterate. reject(ByteIterable iterable, BytePredicate predicate, R targetCollection)
static <R extends MutableByteCollection>
RByteIteratorIterate. reject(ByteIterator iterator, BytePredicate predicate, R targetCollection)
static <R extends MutableByteCollection>
RByteIterableIterate. select(ByteIterable iterable, BytePredicate predicate, R targetCollection)
static <R extends MutableByteCollection>
RByteIteratorIterate. select(ByteIterator iterator, BytePredicate predicate, R targetCollection)