Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.LongIntPredicate
-
Packages that use LongIntPredicate 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 LongIntPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type LongIntPredicate Modifier and Type Method Description default ImmutableLongList
ImmutableLongList. rejectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongList excluding all elements with corresponding indexes matching the specified predicate.default LongList
LongList. rejectWithIndex(LongIntPredicate predicate)
Returns a new LongList excluding all elements with corresponding indexes matching the specified predicate.default MutableLongList
MutableLongList. rejectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongList excluding all elements with corresponding indexes matching the specified predicate.default ImmutableLongList
ImmutableLongList. selectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongList including all elements with corresponding indexes matching the specified predicate.default LongList
LongList. selectWithIndex(LongIntPredicate predicate)
Returns a new LongList including all elements with corresponding indexes matching the specified predicate.default MutableLongList
MutableLongList. selectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongList including all elements with corresponding indexes matching the specified predicate. -
Uses of LongIntPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type LongIntPredicate Modifier and Type Method Description ImmutableLongIntMap
ImmutableLongIntMap. reject(LongIntPredicate predicate)
LongIntMap
LongIntMap. reject(LongIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the predicate.MutableLongIntMap
MutableLongIntMap. reject(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntMap. select(LongIntPredicate predicate)
LongIntMap
LongIntMap. select(LongIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.MutableLongIntMap
MutableLongIntMap. select(LongIntPredicate predicate)
-
Uses of LongIntPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type LongIntPredicate Modifier and Type Method Description default OrderedLongIterable
OrderedLongIterable. rejectWithIndex(LongIntPredicate predicate)
Returns a new OrderedLongIterable excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableLongCollection>
ROrderedLongIterable. rejectWithIndex(LongIntPredicate predicate, R target)
Returns a new MutableLongCollection excluding all elements with corresponding indexes matching the specified predicate.default ReversibleLongIterable
ReversibleLongIterable. rejectWithIndex(LongIntPredicate predicate)
Returns a new ReversibleLongIterable excluding all elements with corresponding indexes matching the specified predicate.default OrderedLongIterable
OrderedLongIterable. selectWithIndex(LongIntPredicate predicate)
Returns a new OrderedLongIterable including all elements with corresponding indexes matching the specified predicate.default <R extends MutableLongCollection>
ROrderedLongIterable. selectWithIndex(LongIntPredicate predicate, R target)
Returns a new MutableLongCollection including all elements with corresponding indexes matching the specified predicate.default ReversibleLongIterable
ReversibleLongIterable. selectWithIndex(LongIntPredicate predicate)
Returns a new ReversibleLongIterable including all elements with corresponding indexes matching the specified predicate. -
Uses of LongIntPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type LongIntPredicate Modifier and Type Method Description default ImmutableLongStack
ImmutableLongStack. rejectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongStack excluding all elements with corresponding indexes matching the specified predicate.default LongStack
LongStack. rejectWithIndex(LongIntPredicate predicate)
Returns a new LongStack excluding all elements with corresponding indexes matching the specified predicate.default MutableLongStack
MutableLongStack. rejectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongStack excluding all elements with corresponding indexes matching the specified predicate.default ImmutableLongStack
ImmutableLongStack. selectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongStack including all elements with corresponding indexes matching the specified predicate.default LongStack
LongStack. selectWithIndex(LongIntPredicate predicate)
Returns a new LongStack including all elements with corresponding indexes matching the specified predicate.default MutableLongStack
MutableLongStack. selectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongStack including all elements with corresponding indexes matching the specified predicate. -
Uses of LongIntPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type LongIntPredicate Modifier and Type Method Description MutableLongList
SynchronizedLongList. rejectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongList excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableLongCollection>
RSynchronizedLongList. rejectWithIndex(LongIntPredicate predicate, R target)
Returns a new MutableLongCollection excluding all elements with corresponding indexes matching the specified predicate.MutableLongList
UnmodifiableLongList. rejectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongList excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableLongCollection>
RUnmodifiableLongList. rejectWithIndex(LongIntPredicate predicate, R target)
Returns a new MutableLongCollection excluding all elements with corresponding indexes matching the specified predicate.MutableLongList
SynchronizedLongList. selectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongList including all elements with corresponding indexes matching the specified predicate.<R extends MutableLongCollection>
RSynchronizedLongList. selectWithIndex(LongIntPredicate predicate, R target)
Returns a new MutableLongCollection including all elements with corresponding indexes matching the specified predicate.MutableLongList
UnmodifiableLongList. selectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongList including all elements with corresponding indexes matching the specified predicate.<R extends MutableLongCollection>
RUnmodifiableLongList. selectWithIndex(LongIntPredicate predicate, R target)
Returns a new MutableLongCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of LongIntPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type LongIntPredicate Modifier and Type Method Description ImmutableLongIntMap
ImmutableLongIntEmptyMap. reject(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntHashMap. reject(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntSingletonMap. reject(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntEmptyMap. select(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntHashMap. select(LongIntPredicate predicate)
ImmutableLongIntMap
ImmutableLongIntSingletonMap. select(LongIntPredicate predicate)
-
Uses of LongIntPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type LongIntPredicate Modifier and Type Method Description LongIntHashMap
LongIntHashMap. reject(LongIntPredicate predicate)
MutableLongIntMap
SynchronizedLongIntMap. reject(LongIntPredicate predicate)
MutableLongIntMap
UnmodifiableLongIntMap. reject(LongIntPredicate predicate)
LongIntHashMap
LongIntHashMap. select(LongIntPredicate predicate)
MutableLongIntMap
SynchronizedLongIntMap. select(LongIntPredicate predicate)
MutableLongIntMap
UnmodifiableLongIntMap. select(LongIntPredicate predicate)
-
Uses of LongIntPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type LongIntPredicate Modifier and Type Method Description MutableLongStack
SynchronizedLongStack. rejectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongStack excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableLongCollection>
RSynchronizedLongStack. rejectWithIndex(LongIntPredicate predicate, R target)
Returns a new MutableLongCollection excluding all elements with corresponding indexes matching the specified predicate.MutableLongStack
SynchronizedLongStack. selectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongStack including all elements with corresponding indexes matching the specified predicate.<R extends MutableLongCollection>
RSynchronizedLongStack. selectWithIndex(LongIntPredicate predicate, R target)
Returns a new MutableLongCollection including all elements with corresponding indexes matching the specified predicate.
-