Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ByteIntPredicate
-
Packages that use ByteIntPredicate Package Description 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.ordered.primitive org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.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.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.stack.mutable.primitive 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 ByteIntPredicate Modifier and Type Method Description default 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 ByteIntPredicate Modifier and Type Method Description ByteIntMap
ByteIntMap. reject(ByteIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableByteIntMap
ImmutableByteIntMap. reject(ByteIntPredicate predicate)
MutableByteIntMap
MutableByteIntMap. reject(ByteIntPredicate predicate)
ByteIntMap
ByteIntMap. select(ByteIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableByteIntMap
ImmutableByteIntMap. select(ByteIntPredicate predicate)
MutableByteIntMap
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 ByteIntPredicate Modifier and Type Method Description default 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 ByteIntPredicate Modifier and Type Method Description default 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 ByteIntPredicate Modifier and Type Method Description MutableByteList
SynchronizedByteList. 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.MutableByteList
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.MutableByteList
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.MutableByteList
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.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ByteIntPredicate Modifier and Type Method Description ImmutableByteIntMap
ImmutableByteIntEmptyMap. reject(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntHashMap. reject(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntSingletonMap. reject(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntEmptyMap. select(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntHashMap. select(ByteIntPredicate predicate)
ImmutableByteIntMap
ImmutableByteIntSingletonMap. select(ByteIntPredicate 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 ByteIntPredicate Modifier and Type Method Description ByteIntHashMap
ByteIntHashMap. reject(ByteIntPredicate predicate)
MutableByteIntMap
SynchronizedByteIntMap. reject(ByteIntPredicate predicate)
MutableByteIntMap
UnmodifiableByteIntMap. reject(ByteIntPredicate predicate)
ByteIntHashMap
ByteIntHashMap. select(ByteIntPredicate predicate)
MutableByteIntMap
SynchronizedByteIntMap. select(ByteIntPredicate predicate)
MutableByteIntMap
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 ByteIntPredicate Modifier and Type Method Description MutableByteStack
SynchronizedByteStack. 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.MutableByteStack
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.
-