Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.BytePredicate
Packages that use BytePredicate
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 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 BytePredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type BytePredicateModifier and TypeMethodDescriptionbooleanByteIterable.allSatisfy(BytePredicate predicate) Returns true if all of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.booleanByteIterable.anySatisfy(BytePredicate predicate) Returns true if any of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.intByteIterable.count(BytePredicate predicate) Returns a count of the number of elements in the ByteIterable that return true for the specified predicate.byteByteIterable.detectIfNone(BytePredicate predicate, byte ifNone) default booleanByteIterable.noneSatisfy(BytePredicate predicate) Returns true if none of the elements in the ByteIterable return true for the specified predicate, otherwise returns false.ByteIterable.reject(BytePredicate predicate) Returns a new ByteIterable with all of the elements in the ByteIterable that return false for the specified predicate.default <R extends MutableByteCollection>
RByteIterable.reject(BytePredicate predicate, R target) Same asByteIterable.reject(BytePredicate), only the results are added to the target MutableByteCollection.LazyByteIterable.reject(BytePredicate 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 <R extends MutableByteCollection>
RByteIterable.select(BytePredicate predicate, R target) Same asByteIterable.select(BytePredicate), only the results are added to the target MutableByteCollection.LazyByteIterable.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteBag.reject(BytePredicate predicate) ImmutableByteBag.reject(BytePredicate predicate) MutableByteBag.reject(BytePredicate predicate) ByteBag.select(BytePredicate predicate) ImmutableByteBag.select(BytePredicate predicate) MutableByteBag.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionImmutableByteCollection.reject(BytePredicate predicate) MutableByteCollection.reject(BytePredicate predicate) default booleanMutableByteCollection.removeIf(BytePredicate predicate) ImmutableByteCollection.select(BytePredicate predicate) MutableByteCollection.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteList.reject(BytePredicate predicate) ImmutableByteList.reject(BytePredicate predicate) MutableByteList.reject(BytePredicate predicate) ByteList.select(BytePredicate predicate) ImmutableByteList.select(BytePredicate predicate) MutableByteList.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteValuesMap.reject(BytePredicate predicate) ImmutableByteByteMap.reject(BytePredicate predicate) ImmutableCharByteMap.reject(BytePredicate predicate) ImmutableDoubleByteMap.reject(BytePredicate predicate) ImmutableFloatByteMap.reject(BytePredicate predicate) ImmutableIntByteMap.reject(BytePredicate predicate) ImmutableLongByteMap.reject(BytePredicate predicate) ImmutableObjectByteMap.reject(BytePredicate predicate) ImmutableShortByteMap.reject(BytePredicate predicate) MutableByteValuesMap.reject(BytePredicate predicate) MutableObjectByteMap.reject(BytePredicate predicate) ByteValuesMap.select(BytePredicate predicate) ImmutableByteByteMap.select(BytePredicate predicate) ImmutableCharByteMap.select(BytePredicate predicate) ImmutableDoubleByteMap.select(BytePredicate predicate) ImmutableFloatByteMap.select(BytePredicate predicate) ImmutableIntByteMap.select(BytePredicate predicate) ImmutableLongByteMap.select(BytePredicate predicate) ImmutableObjectByteMap.select(BytePredicate predicate) ImmutableShortByteMap.select(BytePredicate predicate) MutableByteValuesMap.select(BytePredicate predicate) MutableObjectByteMap.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionOrderedByteIterable.reject(BytePredicate predicate) ReversibleByteIterable.reject(BytePredicate predicate) OrderedByteIterable.select(BytePredicate predicate) ReversibleByteIterable.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteSet.reject(BytePredicate predicate) ImmutableByteSet.reject(BytePredicate predicate) MutableByteSet.reject(BytePredicate predicate) ByteSet.select(BytePredicate predicate) ImmutableByteSet.select(BytePredicate predicate) MutableByteSet.select(BytePredicate predicate) -
Uses of BytePredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type BytePredicateModifier and TypeMethodDescriptionByteStack.reject(BytePredicate predicate) ImmutableByteStack.reject(BytePredicate predicate) MutableByteStack.reject(BytePredicate predicate) ByteStack.select(BytePredicate predicate) ImmutableByteStack.select(BytePredicate predicate) MutableByteStack.select(BytePredicate predicate)