Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ByteIntPredicate
Packages that use ByteIntPredicate
Package
Description
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 mutable and immutable primitive stack API.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive stack interfaces.
-
Uses of ByteIntPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type ByteIntPredicateModifier and TypeMethodDescriptiondefault ByteList
ByteList.rejectWithIndex
(ByteIntPredicate predicate) Returns a new ByteList excluding all elements with corresponding indexes matching the specified predicate.default ImmutableByteList
ImmutableByteList.rejectWithIndex
(ByteIntPredicate predicate) Returns a new ImmutableByteList excluding all elements with corresponding indexes matching the specified predicate.default MutableByteList
MutableByteList.rejectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.default ByteList
ByteList.selectWithIndex
(ByteIntPredicate predicate) Returns a new ByteList including all elements with corresponding indexes matching the specified predicate.default ImmutableByteList
ImmutableByteList.selectWithIndex
(ByteIntPredicate predicate) Returns a new ImmutableByteList including all elements with corresponding indexes matching the specified predicate.default MutableByteList
MutableByteList.selectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate. -
Uses of ByteIntPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteIntPredicateModifier and TypeMethodDescriptionByteIntMap.reject
(ByteIntPredicate predicate) Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableByteIntMap.reject
(ByteIntPredicate predicate) MutableByteIntMap.reject
(ByteIntPredicate predicate) ByteIntMap.select
(ByteIntPredicate predicate) Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableByteIntMap.select
(ByteIntPredicate predicate) MutableByteIntMap.select
(ByteIntPredicate predicate) -
Uses of ByteIntPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type ByteIntPredicateModifier and TypeMethodDescriptiondefault OrderedByteIterable
OrderedByteIterable.rejectWithIndex
(ByteIntPredicate predicate) Returns a new OrderedByteIterable excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableByteCollection>
ROrderedByteIterable.rejectWithIndex
(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection excluding all elements with corresponding indexes matching the specified predicate.default ReversibleByteIterable
ReversibleByteIterable.rejectWithIndex
(ByteIntPredicate predicate) Returns a new ReversibleByteIterable excluding all elements with corresponding indexes matching the specified predicate.default OrderedByteIterable
OrderedByteIterable.selectWithIndex
(ByteIntPredicate predicate) Returns a new OrderedByteIterable including all elements with corresponding indexes matching the specified predicate.default <R extends MutableByteCollection>
ROrderedByteIterable.selectWithIndex
(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection including all elements with corresponding indexes matching the specified predicate.default ReversibleByteIterable
ReversibleByteIterable.selectWithIndex
(ByteIntPredicate predicate) Returns a new ReversibleByteIterable including all elements with corresponding indexes matching the specified predicate. -
Uses of ByteIntPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type ByteIntPredicateModifier and TypeMethodDescriptiondefault ByteStack
ByteStack.rejectWithIndex
(ByteIntPredicate predicate) Returns a new ByteStack excluding all elements with corresponding indexes matching the specified predicate.default ImmutableByteStack
ImmutableByteStack.rejectWithIndex
(ByteIntPredicate predicate) Returns a new ImmutableByteStack excluding all elements with corresponding indexes matching the specified predicate.default MutableByteStack
MutableByteStack.rejectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteStack excluding all elements with corresponding indexes matching the specified predicate.default ByteStack
ByteStack.selectWithIndex
(ByteIntPredicate predicate) Returns a new ByteStack including all elements with corresponding indexes matching the specified predicate.default ImmutableByteStack
ImmutableByteStack.selectWithIndex
(ByteIntPredicate predicate) Returns a new ImmutableByteStack including all elements with corresponding indexes matching the specified predicate.default MutableByteStack
MutableByteStack.selectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteStack including all elements with corresponding indexes matching the specified predicate. -
Uses of ByteIntPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type ByteIntPredicateModifier and TypeMethodDescriptionSynchronizedByteList.rejectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableByteCollection>
RSynchronizedByteList.rejectWithIndex
(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection excluding all elements with corresponding indexes matching the specified predicate.UnmodifiableByteList.rejectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableByteCollection>
RUnmodifiableByteList.rejectWithIndex
(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection excluding all elements with corresponding indexes matching the specified predicate.SynchronizedByteList.selectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.<R extends MutableByteCollection>
RSynchronizedByteList.selectWithIndex
(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection including all elements with corresponding indexes matching the specified predicate.UnmodifiableByteList.selectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.<R extends MutableByteCollection>
RUnmodifiableByteList.selectWithIndex
(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of ByteIntPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ByteIntPredicateModifier and TypeMethodDescriptionByteIntHashMap.reject
(ByteIntPredicate predicate) SynchronizedByteIntMap.reject
(ByteIntPredicate predicate) UnmodifiableByteIntMap.reject
(ByteIntPredicate predicate) ByteIntHashMap.select
(ByteIntPredicate predicate) SynchronizedByteIntMap.select
(ByteIntPredicate predicate) UnmodifiableByteIntMap.select
(ByteIntPredicate predicate) -
Uses of ByteIntPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type ByteIntPredicateModifier and TypeMethodDescriptionSynchronizedByteStack.rejectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteStack excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableByteCollection>
RSynchronizedByteStack.rejectWithIndex
(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection excluding all elements with corresponding indexes matching the specified predicate.SynchronizedByteStack.selectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteStack including all elements with corresponding indexes matching the specified predicate.<R extends MutableByteCollection>
RSynchronizedByteStack.selectWithIndex
(ByteIntPredicate predicate, R target) Returns a new MutableByteCollection including all elements with corresponding indexes matching the specified predicate.