Uses of Interface
org.eclipse.collections.api.ByteIterable
Packages that use ByteIterable
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains factory API for creating immutable primitive list instances.
This package contains factory API for creating primitive set instances.
This package contains factory API for creating primitive stack instances.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
-
Uses of ByteIterable in org.eclipse.collections.api
Subinterfaces of ByteIterable in org.eclipse.collections.apiModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return ByteIterableModifier and TypeMethodDescriptionRichIterable.collectByte(ByteFunction<? super T> byteFunction) Returns a new primitivebyteiterable with the results of applying the specified function on each element of the source collection.ByteIterable.reject(BytePredicate predicate) Returns a new ByteIterable with all of the elements in the ByteIterable that return false for the specified predicate.ByteIterable.select(BytePredicate predicate) Returns a new ByteIterable with all of the elements in the ByteIterable that return true for the specified predicate.default ByteIterableByteIterable.tap(ByteProcedure procedure) Methods in org.eclipse.collections.api that return types with arguments of type ByteIterableModifier and TypeMethodDescriptiondefault RichIterable<ByteIterable>ByteIterable.chunk(int size) Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type ByteIterableModifier and TypeMethodDescriptiondefault booleanByteIterable.containsAll(ByteIterable source) Returns true if all of the values specified in the source ByteIterable are contained in the ByteIterable, and false if they are not.default booleanByteIterable.containsAny(ByteIterable source) Returns true if any of the values specified in the source ByteIterable are contained in the ByteIterable, and false if they are not.default booleanByteIterable.containsNone(ByteIterable source) Returns true if none of the values specified in the source ByteIterable are contained in the ByteIterable, and false if they are.Method parameters in org.eclipse.collections.api with type arguments of type ByteIterableModifier and TypeMethodDescriptiondefault <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. -
Uses of ByteIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.bag.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveBag.stg.interfaceThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceThis file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteBag.newWithAll(ByteIterable elements) ImmutableByteBag.newWithoutAll(ByteIterable elements) MutableByteBag.withAll(ByteIterable elements) MutableByteBag.withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.collection.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceThis file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanMutableByteCollection.addAll(ByteIterable source) ImmutableByteCollection.newWithAll(ByteIterable elements) ImmutableByteCollection.newWithoutAll(ByteIterable elements) booleanMutableByteCollection.removeAll(ByteIterable source) booleanMutableByteCollection.retainAll(ByteIterable elements) MutableByteCollection.withAll(ByteIterable elements) MutableByteCollection.withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteBagFactory.ofAll(ByteIterable items) MutableByteBagFactory.ofAll(ByteIterable items) ImmutableByteBagFactory.withAll(ByteIterable items) MutableByteBagFactory.withAll(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteListFactory.ofAll(ByteIterable items) MutableByteListFactory.ofAll(ByteIterable items) ImmutableByteListFactory.withAll(ByteIterable items) MutableByteListFactory.withAll(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteSetFactory.ofAll(ByteIterable items) MutableByteSetFactory.ofAll(ByteIterable items) ImmutableByteSetFactory.withAll(ByteIterable items) MutableByteSetFactory.withAll(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteStackFactory.ofAll(ByteIterable items) MutableByteStackFactory.ofAll(ByteIterable items) ImmutableByteStackFactory.ofAllReversed(ByteIterable items) MutableByteStackFactory.ofAllReversed(ByteIterable items) ImmutableByteStackFactory.withAll(ByteIterable items) MutableByteStackFactory.withAll(ByteIterable items) ImmutableByteStackFactory.withAllReversed(ByteIterable items) MutableByteStackFactory.withAllReversed(ByteIterable items) -
Uses of ByteIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveList.stg.interfaceThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceThis file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionbooleanMutableByteList.addAllAtIndex(int index, ByteIterable source) ImmutableByteList.newWithAll(ByteIterable elements) ImmutableByteList.newWithoutAll(ByteIterable elements) MutableByteList.withAll(ByteIterable elements) MutableByteList.withoutAll(ByteIterable elements) default ListIterable<ByteBytePair>ByteList.zipByte(ByteIterable iterable) Returns aListIterableformed from thisByteListand anotherByteListby combining corresponding elements in pairs.default ImmutableList<ByteBytePair>ImmutableByteList.zipByte(ByteIterable iterable) Returns anImmutableListformed from thisImmutableByteListand anotherByteListby combining corresponding elements in pairs.default MutableList<ByteBytePair>MutableByteList.zipByte(ByteIterable iterable) Returns aMutableListformed from thisMutableByteListand anotherByteListby combining corresponding elements in pairs. -
Uses of ByteIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.map.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitiveValuesMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceThis file was automatically generated from template file objectPrimitiveMap.stg.interfaceThis file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteBooleanMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteByteMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteCharMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteDoubleMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteFloatMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteIntMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteLongMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteObjectMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableByteShortMap.newWithoutAllKeys(ByteIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.MutableByteBooleanMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteByteMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteCharMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteDoubleMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteFloatMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteIntMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteLongMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteObjectMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteShortMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map. -
Uses of ByteIterable in org.eclipse.collections.api.ordered.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.ordered.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceThis file was automatically generated from template file reversiblePrimitiveIterable.stg. -
Uses of ByteIterable in org.eclipse.collections.api.set.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.set.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveSet.stg.interfaceThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceThis file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type ByteIterableModifier and TypeMethodDescriptionImmutableByteSet.newWithAll(ByteIterable elements) ImmutableByteSet.newWithoutAll(ByteIterable elements) MutableByteSet.withAll(ByteIterable elements) MutableByteSet.withoutAll(ByteIterable elements) -
Uses of ByteIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of ByteIterable in org.eclipse.collections.api.stack.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file primitiveStack.stg.interfaceThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceThis file was automatically generated from template file mutablePrimitiveStack.stg.