Uses of Interface
org.eclipse.collections.api.block.predicate.Predicate2
Packages that use Predicate2
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for BiMap API.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains interfaces for map API which enhance the performance and functionality of
MapThis 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 sorted map interfaces.
This package contains interfaces for
Multimap.This package contains interfaces for
BagMultimap.This package contains interfaces for
ListMultimap.This package contains interfaces for
SetMultimap.This package contains interfaces for
SortedBagMultimap.This package contains interfaces for
SortedSetMultimap.This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag interface.This package contains implementations of the
MutableBag interface.This package contains implementations of
MutableSortedBag.This package contains implementations of the
MutableBiMap interface.This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure.This package contains implementations of
Predicate and Predicate2.This package contains abstract implementations of
Predicate and Predicate2.This package contains implementations of
Procedure and Procedure2.This package contains implementations of the
MutableCollection interface.This package contains implementations of the
LazyIterable interface.This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the
FixedSizeList interface.This package contains implementations of the
ImmutableList interface.This package contains implementations of the
MutableList interface.This package contains implementations of the
MapIterable interface.This package contains implementations of the
FixedSizeMap interface.This package contains implementations of the
ImmutableMap interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the
MutableSortedMap interface.This package contains immutable map implementations backed by hashtables that rely on
HashingStrategys provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains mutable map implementations backed by hashtables that rely on
HashingStrategys provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains implementations of the
Multimap interface.This package contains implementations of the
BagMultimap interface.This package contains implementations of the
ListMultimap interface.This package contains implementations of the
SetMultimap interface.This package contains implementations of the
SortedSetMultimap interface.This package contains implementations of the
SetMultimap interface which use a set with user-defined HashingStrategy as their underlying store for the multiple values of a given key.This package contains implementations of the
PartitionStack interface.This package contains implementations of
FixedSizeSet.This package contains the implementations of
ImmutableSet.This package contains implementations of
MutableSet.This package contains implementations of
ImmutableSortedSet.This package contains implementations of
MutableSortedSet.This package contains implementations of sets with user defined
HashingStrategys.This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of Predicate2 in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanParallelIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanRichIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) Returns true if the predicate evaluates to true for every element of the collection, or returns false.<P> booleanParallelIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanRichIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) Returns true if the predicate evaluates to true for any element of the collection, or return false.<P> intParallelIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intRichIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) Returns the total number of elements that evaluate to true for the specified predicate.<P> TParallelIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TRichIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) Returns the first element that evaluates to true for the specified predicate2 and parameter, or null if none evaluate to true.<P> TParallelIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TRichIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter, or returns the value of evaluating the specified function.RichIterable.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) Returns the first element that evaluates to true for the specified predicate2 and parameter as an Optional.<P> booleanParallelIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanRichIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) Returns true if the predicate evaluates to false for every element of the collection, or return false.<P> PartitionIterable<T> RichIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) Filters a collection into a PartitionIterable based on the evaluation of the predicate.<P> LazyIterable<T> LazyIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T> ParallelIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> RichIterable<T> RichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Similar toRichIterable.reject(Predicate), except with an evaluation parameter for the second generic argument inPredicate2.<P, R extends Collection<T>>
RRichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) Similar toRichIterable.reject(Predicate, Collection), except with an evaluation parameter for the second generic argument inPredicate2.<P> LazyIterable<T> LazyIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T> ParallelIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> RichIterable<T> RichIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) Similar toRichIterable.select(Predicate), except with an evaluation parameter for the second generic argument inPredicate2.<P, R extends Collection<T>>
RRichIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) Similar toRichIterable.select(Predicate, Collection), except with an evaluation parameter for the second generic argument inPredicate2. -
Uses of Predicate2 in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionBag<T> Bag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionImmutableBag<T> ImmutableBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableBagIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T> MutableBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) MutableBagIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) Bag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBag<T> ImmutableBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBagIterable<T> ImmutableBagIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> MutableBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBagIterable<T> MutableBagIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelBag<T> ParallelBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelUnsortedBag<T> ParallelUnsortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> UnsortedBag<T> UnsortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Bag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBag<T> ImmutableBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBagIterable<T> ImmutableBagIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> MutableBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBagIterable<T> MutableBagIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelBag<T> ParallelBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelUnsortedBag<T> ParallelUnsortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> UnsortedBag<T> UnsortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSortedBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) MutableSortedBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionSortedBag<T> SortedBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedBag<T> ImmutableSortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T> MutableSortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelSortedBag<T> ParallelSortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) SortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedBag<T> ImmutableSortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T> MutableSortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelSortedBag<T> ParallelSortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) SortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionUnsortedSet<V> BiMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableSet<V> ImmutableBiMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableSet<V> MutableBiMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) BiMap.reject(Predicate2<? super K, ? super V> predicate) ImmutableBiMap.reject(Predicate2<? super K, ? super V> predicate) MutableBiMap.reject(Predicate2<? super K, ? super V> predicate) <P> SetIterable<V> BiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableSet<V> ImmutableBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V> MutableBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) BiMap.select(Predicate2<? super K, ? super V> predicate) ImmutableBiMap.select(Predicate2<? super K, ? super V> predicate) MutableBiMap.select(Predicate2<? super K, ? super V> predicate) <P> SetIterable<V> BiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableSet<V> ImmutableBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V> MutableBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableCollection.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) MutableCollection.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) Filters a collection into a PartitionIterable based on the evaluation of the predicate.<P> ImmutableCollection<T> ImmutableCollection.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T> MutableCollection.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Returns a MutableCollection with all elements that evaluate to false for the specified predicate2 and parameter.<P> booleanFixedSizeCollection.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanMutableCollection.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) Removes all elements in the collection that evaluate to true for the specified predicate2 and parameter.<P> Twin<MutableList<T>> MutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.<P> ImmutableCollection<T> ImmutableCollection.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T> MutableCollection.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) Returns a MutableCollection with all elements that evaluate to true for the specified predicate2 and parameter. -
Uses of Predicate2 in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableList<T> ImmutableList.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionList<T> ListIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T> MutableList.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableList<T> ImmutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ListIterable<T> ListIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) default <P> MutableList<T> MutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T> ParallelListIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableList<T> ImmutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ListIterable<T> ListIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) default <P> MutableList<T> MutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T> ParallelListIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type Predicate2Modifier and TypeMethodDescriptionMapIterable.detect(Predicate2<? super K, ? super V> predicate) Return the first key and value of the map for which the predicate evaluates to true when they are given as arguments.MapIterable.detectOptional(Predicate2<? super K, ? super V> predicate) Return the first key and value of the map as an Optional for which the predicate evaluates to true when they are given as arguments.<P> PartitionImmutableBag<V> ImmutableMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableList<V> ImmutableOrderedMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> MutableMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V> MutableOrderedMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionList<V> OrderedMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionBag<V> UnsortedMapIterable.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableMap.reject(Predicate2<? super K, ? super V> predicate) ImmutableMapIterable.reject(Predicate2<? super K, ? super V> predicate) ImmutableOrderedMap.reject(Predicate2<? super K, ? super V> predicate) MapIterable.reject(Predicate2<? super K, ? super V> predicate) For each key and value of the map the predicate is evaluated, if the result of the evaluation is false, that key and value are returned in a new map.MutableMap<K, V> MutableMap.reject(Predicate2<? super K, ? super V> predicate) MutableMapIterable.reject(Predicate2<? super K, ? super V> predicate) MutableOrderedMap.reject(Predicate2<? super K, ? super V> predicate) OrderedMap<K, V> OrderedMap.reject(Predicate2<? super K, ? super V> predicate) UnsortedMapIterable.reject(Predicate2<? super K, ? super V> predicate) <P> ImmutableBag<V> ImmutableMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableCollection<V> ImmutableMapIterable.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableList<V> ImmutableOrderedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V> MutableMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableCollection<V> MutableMapIterable.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> MutableOrderedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ListIterable<V> OrderedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) UnsortedMapIterable.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) booleanFixedSizeMap.removeIf(Predicate2<? super K, ? super V> predicate) default booleanMutableMapIterable.removeIf(Predicate2<? super K, ? super V> predicate) Remove an entry from the map if thepredicateevaluates to true.ImmutableMap.select(Predicate2<? super K, ? super V> predicate) ImmutableMapIterable.select(Predicate2<? super K, ? super V> predicate) ImmutableOrderedMap.select(Predicate2<? super K, ? super V> predicate) MapIterable.select(Predicate2<? super K, ? super V> predicate) For each key and value of the map the predicate is evaluated, if the result of the evaluation is true, that key and value are returned in a new map.MutableMap<K, V> MutableMap.select(Predicate2<? super K, ? super V> predicate) MutableMapIterable.select(Predicate2<? super K, ? super V> predicate) MutableOrderedMap.select(Predicate2<? super K, ? super V> predicate) OrderedMap<K, V> OrderedMap.select(Predicate2<? super K, ? super V> predicate) UnsortedMapIterable.select(Predicate2<? super K, ? super V> predicate) <P> ImmutableBag<V> ImmutableMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableCollection<V> ImmutableMapIterable.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableList<V> ImmutableOrderedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V> MutableMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableCollection<V> MutableMapIterable.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> MutableOrderedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ListIterable<V> OrderedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) UnsortedMapIterable.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableBag<V> ImmutablePrimitiveObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> MutablePrimitiveObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionBag<V> PrimitiveObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableBag<V> ImmutablePrimitiveObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V> MutablePrimitiveObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) PrimitiveObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableBag<V> ImmutablePrimitiveObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V> MutablePrimitiveObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) PrimitiveObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableList<V> ImmutableSortedMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V> MutableSortedMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionList<V> SortedMapIterable.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableSortedMap.reject(Predicate2<? super K, ? super V> predicate) MutableSortedMap.reject(Predicate2<? super K, ? super V> predicate) SortedMapIterable.reject(Predicate2<? super K, ? super V> predicate) <P> ImmutableList<V> ImmutableSortedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> MutableSortedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ListIterable<V> SortedMapIterable.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableSortedMap.select(Predicate2<? super K, ? super V> predicate) MutableSortedMap.select(Predicate2<? super K, ? super V> predicate) SortedMapIterable.select(Predicate2<? super K, ? super V> predicate) <P> ImmutableList<V> ImmutableSortedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> MutableSortedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ListIterable<V> SortedMapIterable.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.multimap
Methods in org.eclipse.collections.api.multimap with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Multimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Returns all elements of the source multimap that don't satisfy the predicate.<R extends MutableMultimap<K,V>>
RMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) Same as the reject method but uses the specified target multimap for the results.MutableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) Multimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) Returns all elements of the source multimap that don't satisfy the predicate.<R extends MutableMultimap<K,V>>
RMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate, R target) Same as the reject method but uses the specified target multimap for the results.MutableMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Multimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Returns all elements of the source multimap that satisfies the predicate.<R extends MutableMultimap<K,V>>
RMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) Same as the select method but uses the specified target multimap for the results.MutableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) Multimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) Returns all elements of the source multimap that satisfies the predicate.<R extends MutableMultimap<K,V>>
RMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate, R target) Same as the select method but uses the specified target multimap for the results.MutableMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.bag
Methods in org.eclipse.collections.api.multimap.bag with parameters of type Predicate2Modifier and TypeMethodDescriptionBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) BagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableBagIterableMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) MutableBagIterableMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) MutableBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) UnsortedBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) BagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) BagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableBagIterableMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) MutableBagIterableMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) MutableBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) UnsortedBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableListMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ListMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) MutableListMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableListMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) ListMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) MutableListMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.ordered
Methods in org.eclipse.collections.api.multimap.ordered with parameters of type Predicate2Modifier and TypeMethodDescriptionOrderedIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ReversibleIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) OrderedIterableMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ReversibleIterableMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SortedIterableMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) OrderedIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ReversibleIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) OrderedIterableMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) ReversibleIterableMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SortedIterableMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSetIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetIterableMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetIterableMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) MutableSetIterableMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) MutableSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) UnsortedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableSetIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetIterableMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnsortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetIterableMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) MutableSetIterableMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) MutableSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) UnsortedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) MutableSortedBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SortedBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableSortedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) MutableSortedBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SortedBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) MutableSortedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SortedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MutableSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) MutableSortedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SortedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type Predicate2Modifier and TypeMethodDescription<S> booleanOrderedIterable.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) Returns true if both OrderedIterables have the same length andpredicatereturns true for all corresponding elements e1 of thisOrderedIterableand e2 ofother.OrderedIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) ReversibleIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> OrderedIterable<T> OrderedIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ReversibleIterable<T> ReversibleIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> SortedIterable<T> SortedIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> OrderedIterable<T> OrderedIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ReversibleIterable<T> ReversibleIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> SortedIterable<T> SortedIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableSet<T> ImmutableSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableSetIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableSet<T> MutableSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) MutableSetIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionSet<T> SetIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSet<T> ImmutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSetIterable<T> ImmutableSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> MutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSetIterable<T> MutableSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelSetIterable<T> ParallelSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) ParallelUnsortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> SetIterable<T> SetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> UnsortedSetIterable<T> UnsortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSet<T> ImmutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSetIterable<T> ImmutableSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> MutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSetIterable<T> MutableSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelSetIterable<T> ParallelSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) ParallelUnsortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> SetIterable<T> SetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> UnsortedSetIterable<T> UnsortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSortedSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) MutableSortedSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionSortedSet<T> SortedSetIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedSet<T> ImmutableSortedSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet<T> MutableSortedSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) ParallelSortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> SortedSetIterable<T> SortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedSet<T> ImmutableSortedSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet<T> MutableSortedSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) ParallelSortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> SortedSetIterable<T> SortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableStack<T> ImmutableStack.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableStack<T> MutableStack.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionStack<T> StackIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableStack<T> ImmutableStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableStack<T> MutableStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> StackIterable<T> StackIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableStack<T> ImmutableStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableStack<T> MutableStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> StackIterable<T> StackIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractRichIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanUnmodifiableRichIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractRichIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanUnmodifiableRichIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intAbstractRichIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intUnmodifiableRichIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractRichIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TUnmodifiableRichIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractRichIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TUnmodifiableRichIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) AbstractRichIterable.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) UnmodifiableRichIterable.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractRichIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanUnmodifiableRichIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionIterable<T> UnmodifiableRichIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractRichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> RichIterable<T> UnmodifiableRichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RUnmodifiableRichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P, R extends Collection<T>>
RAbstractRichIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> RichIterable<T> UnmodifiableRichIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RUnmodifiableRichIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type Predicate2Modifier and TypeMethodDescription<P, R extends Collection<T>>
RAbstractBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P, R extends Collection<T>>
RAbstractBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanImmutableArrayBag.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableEmptyBag.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableHashBag.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableArrayBag.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableEmptyBag.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableHashBag.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intImmutableEmptyBag.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TImmutableArrayBag.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TImmutableEmptyBag.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TImmutableHashBag.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TImmutableEmptyBag.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) ImmutableArrayBag.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableEmptyBag.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableHashBag.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableArrayBag.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableEmptyBag.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableHashBag.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionImmutableBag<T> AbstractImmutableBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionImmutableBag<T> ImmutableEmptyBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBag<T> AbstractImmutableBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBag<T> ImmutableEmptyBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RImmutableSingletonBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ImmutableBag<T> AbstractImmutableBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableBag<T> ImmutableEmptyBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RImmutableSingletonBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractMutableBagIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMutableBagIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractMutableBagIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractMutableBagIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) AbstractMutableBagIterable.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMutableBagIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T> AbstractMutableBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T> MultiReaderHashBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T> MultiReaderHashBag.UntouchableMutableBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T> SynchronizedBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableBag<T> UnmodifiableBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> AbstractMutableBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> MultiReaderHashBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> MultiReaderHashBag.UntouchableMutableBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> SynchronizedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> UnmodifiableBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractHashBag.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractMutableBagIterable.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> AbstractMutableBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> MultiReaderHashBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> MultiReaderHashBag.UntouchableMutableBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> SynchronizedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableBag<T> UnmodifiableBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanImmutableSortedBagImpl.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableSortedBagImpl.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> booleanImmutableEmptySortedBag.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanImmutableSortedBagImpl.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <P> booleanImmutableSortedBagImpl.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) AbstractImmutableSortedBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedBag<T> AbstractImmutableSortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedBag<T> ImmutableEmptySortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedBag<T> AbstractImmutableSortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedBag<T> ImmutableEmptySortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<S> booleanSynchronizedSortedBag.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanTreeBag.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanUnmodifiableSortedBag.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) AbstractMutableSortedBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedSortedBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) UnmodifiableSortedBag.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T> AbstractMutableSortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T> SynchronizedSortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T> UnmodifiableSortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanTreeBag.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T> AbstractMutableSortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T> SynchronizedSortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedBag<T> UnmodifiableSortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractBiMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanAbstractBiMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intAbstractBiMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractBiMap.detect(Predicate2<? super K, ? super V> predicate) AbstractBiMap.detectOptional(Predicate2<? super K, ? super V> predicate) <P> VAbstractBiMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VAbstractBiMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) AbstractBiMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanAbstractBiMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RAbstractBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P, R extends Collection<V>>
RAbstractBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> PartitionImmutableSet<V> AbstractImmutableBiMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableBiMap.reject(Predicate2<? super K, ? super V> predicate) <P> ImmutableSet<V> AbstractImmutableBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableBiMap.select(Predicate2<? super K, ? super V> predicate) <P> ImmutableSet<V> AbstractImmutableBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanUnmodifiableBiMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableBiMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intUnmodifiableBiMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableBiMap.detect(Predicate2<? super K, ? super V> predicate) UnmodifiableBiMap.detectOptional(Predicate2<? super K, ? super V> predicate) <P> VUnmodifiableBiMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableBiMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) UnmodifiableBiMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableBiMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableSet<V> AbstractMutableBiMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableSet<V> SynchronizedBiMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableSet<V> UnmodifiableBiMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractMutableBiMap.reject(Predicate2<? super K, ? super V> predicate) SynchronizedBiMap.reject(Predicate2<? super K, ? super V> predicate) UnmodifiableBiMap.reject(Predicate2<? super K, ? super V> predicate) <P> MutableSet<V> AbstractMutableBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V> SynchronizedBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V> UnmodifiableBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableBiMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) booleanUnmodifiableBiMap.removeIf(Predicate2<? super K, ? super V> predicate) AbstractMutableBiMap.select(Predicate2<? super K, ? super V> predicate) SynchronizedBiMap.select(Predicate2<? super K, ? super V> predicate) UnmodifiableBiMap.select(Predicate2<? super K, ? super V> predicate) <P> MutableSet<V> AbstractMutableBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V> SynchronizedBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableSet<V> UnmodifiableBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableBiMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement Predicate2Modifier and TypeClassDescriptionclassPredicates2<T,P> Predicates2 is a static version of Predicates.private static final classprivate static final classprivate static final classPredicates2.And<T,P> private static final classprivate static final classprivate static classPredicates2.GreaterThan<T extends Comparable<T>>private static classPredicates2.GreaterThanOrEqual<T extends Comparable<T>>private static final classprivate static final classprivate static final classprivate static final classprivate static classPredicates2.LessThan<T extends Comparable<T>>private static classPredicates2.LessThanOrEqual<T extends Comparable<T>>private static final classPredicates2.Not<T,P> private static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classPredicates2.Or<T,P> private static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classFields in org.eclipse.collections.impl.block.factory declared as Predicate2Modifier and TypeFieldDescriptionprivate final Predicate2<? super T, ? super P> Predicates2.And.leftprivate final Predicate2<? super T, ? super P> Predicates2.Or.leftprivate final Predicate2<? super T, ? super P> Predicates.BindPredicate2.predicateprivate final Predicate2<? super P, ? super P> Predicates2.AttributePredicates2.predicateprivate final Predicate2<T, P> Predicates2.Not.predicateprivate final Predicate2<? super T, ? super P> Predicates2.And.rightprivate final Predicate2<? super T, ? super P> Predicates2.Or.rightMethods in org.eclipse.collections.impl.block.factory that return Predicate2Modifier and TypeMethodDescriptionstatic <T,P> Predicate2 <T, P> Predicates2.throwing(ThrowingPredicate2<T, P> throwingPredicate2) Allows a lambda or anonymous inner class that needs to throw a checked exception to be safely wrapped as a Predicate2 that will throw a RuntimeException, wrapping the checked exception that is the cause.static <T1,T2> Predicate2 <T1, T2> Predicates2.throwing(ThrowingPredicate2<T1, T2> throwingPredicate2, Function3<T1, T2, ? super Throwable, ? extends RuntimeException> rethrow) Allows a lambda or anonymous inner class that needs to throw a checked exception to be safely wrapped as a Procedure2 that will throw a user specified RuntimeException based on the provided function.Methods in org.eclipse.collections.impl.block.factory with parameters of type Predicate2Modifier and TypeMethodDescriptionPredicates2.and(Predicate2<? super T, ? super P> op) static <T,P> Predicates2 <T, P> Predicates2.and(Predicate2<? super T, ? super P> left, Predicate2<? super T, ? super P> right) static <P,T> Predicate <T> Predicates.bind(Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> Predicates2 <T, P> Predicates2.not(Predicate2<T, P> predicate) Predicates2.or(Predicate2<? super T, ? super P> op) static <T,P> Predicates2 <T, P> Predicates2.or(Predicate2<? super T, ? super P> left, Predicate2<? super T, ? super P> right) Constructors in org.eclipse.collections.impl.block.factory with parameters of type Predicate2ModifierConstructorDescriptionprivateAnd(Predicate2<? super T, ? super P> one, Predicate2<? super T, ? super P> two) privateAttributePredicates2(Function<? super T, ? extends P> function, Predicate2<? super P, ? super P> predicate) privateBindPredicate2(Predicate2<? super T, ? super P> predicate, P parameter) privateNot(Predicate2<T, P> predicate) privateOr(Predicate2<? super T, ? super P> one, Predicate2<? super T, ? super P> two) -
Uses of Predicate2 in org.eclipse.collections.impl.block.predicate
Classes in org.eclipse.collections.impl.block.predicate that implement Predicate2 -
Uses of Predicate2 in org.eclipse.collections.impl.block.predicate.checked
Classes in org.eclipse.collections.impl.block.predicate.checked that implement Predicate2 -
Uses of Predicate2 in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as Predicate2Modifier and TypeFieldDescriptionprivate final Predicate2<? super T, ? super P> PartitionPredicate2Procedure.predicateConstructors in org.eclipse.collections.impl.block.procedure with parameters of type Predicate2ModifierConstructorDescriptionPartitionPredicate2Procedure(Predicate2<? super T, ? super P> predicate, P parameter, PartitionMutableCollection<T> partitionMutableCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractSynchronizedRichIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractSynchronizedRichIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intAbstractSynchronizedRichIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractSynchronizedRichIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractSynchronizedRichIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) AbstractSynchronizedRichIterable.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractSynchronizedRichIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionIterable<T> AbstractSynchronizedRichIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> RichIterable<T> AbstractSynchronizedRichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractSynchronizedRichIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> RichIterable<T> AbstractSynchronizedRichIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractSynchronizedRichIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractCollectionAdapter.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMultiReaderMutableCollection.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractUnmodifiableMutableCollection.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractCollectionAdapter.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMultiReaderMutableCollection.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractUnmodifiableMutableCollection.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intAbstractCollectionAdapter.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intAbstractMultiReaderMutableCollection.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intAbstractMultiReaderMutableCollection.UntouchableMutableCollection.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intAbstractUnmodifiableMutableCollection.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractCollectionAdapter.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractMultiReaderMutableCollection.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractMultiReaderMutableCollection.UntouchableMutableCollection.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractUnmodifiableMutableCollection.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractCollectionAdapter.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TAbstractMultiReaderMutableCollection.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TAbstractMultiReaderMutableCollection.UntouchableMutableCollection.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TAbstractUnmodifiableMutableCollection.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) AbstractCollectionAdapter.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) AbstractMultiReaderMutableCollection.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) AbstractMultiReaderMutableCollection.UntouchableMutableCollection.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) AbstractUnmodifiableMutableCollection.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractCollectionAdapter.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMultiReaderMutableCollection.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractUnmodifiableMutableCollection.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) AbstractCollectionAdapter.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) AbstractSynchronizedMutableCollection.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) AbstractUnmodifiableMutableCollection.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T> AbstractCollectionAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractCollectionAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P, R extends Collection<T>>
RAbstractMultiReaderMutableCollection.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P, R extends Collection<T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> MutableCollection<T> AbstractSynchronizedMutableCollection.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T> AbstractUnmodifiableMutableCollection.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractUnmodifiableMutableCollection.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> booleanAbstractCollectionAdapter.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMultiReaderMutableCollection.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMultiReaderMutableCollection.UntouchableMutableCollection.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMutableCollection.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractSynchronizedMutableCollection.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractUnmodifiableMutableCollection.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractCollectionAdapter.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractMultiReaderMutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractMultiReaderMutableCollection.UntouchableMutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractMutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractSynchronizedMutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractUnmodifiableMutableCollection.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T> AbstractCollectionAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractCollectionAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P, R extends Collection<T>>
RAbstractMultiReaderMutableCollection.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P, R extends Collection<T>>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> MutableCollection<T> AbstractSynchronizedMutableCollection.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableCollection<T> AbstractUnmodifiableMutableCollection.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractUnmodifiableMutableCollection.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type Predicate2Modifier and TypeMethodDescriptionstatic <T, P, R extends PartitionMutableCollection<T>>
Collector<T, ?, R> Collectors2.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter, Supplier<R> supplier) Returns all elements of the stream split into a PartitionMutableCollection after evaluating the predicate.static <T, P, R extends Collection<T>>
Collector<T, ?, R> Collectors2.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, Supplier<R> supplier) Returns all elements of the stream that return false when evaluating the predicate with the parameter.static <T, P, R extends Collection<T>>
Collector<T, ?, R> Collectors2.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, Supplier<R> supplier) Returns all elements of the stream that return true when evaluating the predicate with the parameter. -
Uses of Predicate2 in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanFlatCollectIterable.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanLazyIterableAdapter.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanFlatCollectIterable.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanLazyIterableAdapter.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TLazyIterableAdapter.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) LazyIterableAdapter.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanFlatCollectIterable.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanLazyIterableAdapter.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T> AbstractLazyIterable.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> LazyIterable<T> AbstractLazyIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> LazyIterable<T> AbstractLazyIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractMultiReaderParallelIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractParallelIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractSynchronizedParallelIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanNonParallelIterable.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMultiReaderParallelIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractParallelIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractSynchronizedParallelIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanNonParallelIterable.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intAbstractMultiReaderParallelIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intAbstractParallelIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intAbstractSynchronizedParallelIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intNonParallelIterable.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractMultiReaderParallelIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractParallelIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractSynchronizedParallelIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TNonParallelIterable.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractMultiReaderParallelIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TAbstractParallelIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TAbstractSynchronizedParallelIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TNonParallelIterable.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> booleanAbstractMultiReaderParallelIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractParallelIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractSynchronizedParallelIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanNonParallelIterable.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T> AbstractParallelIterableImpl.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T> MultiReaderParallelIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T> SynchronizedParallelIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T> AbstractParallelIterableImpl.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T> MultiReaderParallelIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelIterable<T> SynchronizedParallelIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.parallel.bag
Methods in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type Predicate2Modifier and TypeMethodDescription<P> ParallelUnsortedBag<T> AbstractParallelUnsortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelUnsortedBag<T> NonParallelUnsortedBag.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelUnsortedBag<T> AbstractParallelUnsortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelUnsortedBag<T> NonParallelUnsortedBag.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.parallel.list
Methods in org.eclipse.collections.impl.lazy.parallel.list with parameters of type Predicate2Modifier and TypeMethodDescription<P> ParallelListIterable<T> AbstractParallelListIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T> MultiReaderParallelListIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T> NonParallelListIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T> SynchronizedParallelListIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T> AbstractParallelListIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T> MultiReaderParallelListIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T> NonParallelListIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ParallelListIterable<T> SynchronizedParallelListIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.parallel.set
Methods in org.eclipse.collections.impl.lazy.parallel.set with parameters of type Predicate2Modifier and TypeMethodDescriptionAbstractParallelUnsortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) MultiReaderParallelUnsortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) NonParallelUnsortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedParallelUnsortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) AbstractParallelUnsortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) MultiReaderParallelUnsortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) NonParallelUnsortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedParallelUnsortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.parallel.set.sorted
Methods in org.eclipse.collections.impl.lazy.parallel.set.sorted with parameters of type Predicate2Modifier and TypeMethodDescriptionAbstractParallelSortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) NonParallelSortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedParallelSortedSetIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) AbstractParallelSortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) NonParallelSortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedParallelSortedSetIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanFlatCollectBooleanToObjectIterable.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectByteToObjectIterable.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectCharToObjectIterable.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectDoubleToObjectIterable.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectFloatToObjectIterable.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectIntToObjectIterable.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectLongToObjectIterable.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectShortToObjectIterable.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectBooleanToObjectIterable.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectByteToObjectIterable.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectCharToObjectIterable.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectDoubleToObjectIterable.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectFloatToObjectIterable.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectIntToObjectIterable.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectLongToObjectIterable.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectShortToObjectIterable.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectBooleanToObjectIterable.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectByteToObjectIterable.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectCharToObjectIterable.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectDoubleToObjectIterable.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectFloatToObjectIterable.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectIntToObjectIterable.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectLongToObjectIterable.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFlatCollectShortToObjectIterable.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractArrayAdapter.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractArrayAdapter.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> booleanAbstractArrayAdapter.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <P> intAbstractArrayAdapter.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractArrayAdapter.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) AbstractArrayAdapter.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractArrayAdapter.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractArrayAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> booleanAbstractArrayAdapter.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMemoryEfficientMutableList.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMemoryEfficientMutableList.SubList.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractArrayAdapter.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractArrayAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanImmutableEmptyList.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableEmptyList.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> booleanAbstractImmutableList.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanImmutableArrayList.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <P> intImmutableEmptyList.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TImmutableArrayList.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) ImmutableArrayList.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableEmptyList.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionImmutableList<T> AbstractImmutableList.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionImmutableList<T> ImmutableArrayList.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableList<T> AbstractImmutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractImmutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ImmutableList<T> ImmutableArrayList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RImmutableArrayList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P, R extends Collection<T>>
RImmutableEmptyList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ImmutableList<T> AbstractImmutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractImmutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ImmutableList<T> ImmutableArrayList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RImmutableArrayList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P, R extends Collection<T>>
RImmutableEmptyList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.list.mutable
Fields in org.eclipse.collections.impl.list.mutable declared as Predicate2Modifier and TypeFieldDescriptionprivate static final Predicate2<FastList<?>, Object> CompositeFastList.REMOVE_PREDICATEMethods in org.eclipse.collections.impl.list.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractMutableList.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanCompositeFastList.allSatisfyWith(Predicate2<? super E, ? super P> predicate, P parameter) <P> booleanFastList.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMutableList.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanCompositeFastList.anySatisfyWith(Predicate2<? super E, ? super P> predicate, P parameter) <P> booleanFastList.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> booleanAbstractMutableList.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanArrayListAdapter.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanFastList.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanListAdapter.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanMultiReaderFastList.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanMultiReaderFastList.UntouchableMutableList.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanRandomAccessListAdapter.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanSynchronizedMutableList.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanUnmodifiableMutableList.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <P> intAbstractMutableList.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intCompositeFastList.countWith(Predicate2<? super E, ? super P> predicate, P parameter) <P> intFastList.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TAbstractMutableList.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TFastList.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) AbstractMutableList.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) FastList.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMutableList.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanCompositeFastList.noneSatisfyWith(Predicate2<? super E, ? super P> predicate, P parameter) <P> booleanFastList.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T> AbstractListAdapter.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T> AbstractMutableList.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T> ArrayListAdapter.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionFastList<T> FastList.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T> MultiReaderFastList.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T> MultiReaderFastList.UntouchableMutableList.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T> RandomAccessListAdapter.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T> SynchronizedMutableList.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableList<T> UnmodifiableMutableList.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> AbstractListAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractMutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ArrayListAdapter<T> ArrayListAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<E>>
RCompositeFastList.rejectWith(Predicate2<? super E, ? super P> predicate, P parameter, R target) FastList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RFastList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> MutableList<T> MultiReaderFastList.UntouchableMutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> RandomAccessListAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> SynchronizedMutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> UnmodifiableMutableList.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractMutableList.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanFastList.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> AbstractMutableList.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> FastList.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> AbstractListAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RAbstractMutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ArrayListAdapter<T> ArrayListAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<E>>
RCompositeFastList.selectWith(Predicate2<? super E, ? super P> predicate, P parameter, R target) FastList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RFastList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> MutableList<T> MultiReaderFastList.UntouchableMutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> RandomAccessListAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> SynchronizedMutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableList<T> UnmodifiableMutableList.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractMapIterable.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanAbstractMapIterable.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractSynchronizedMapIterable.detect(Predicate2<? super K, ? super V> predicate) AbstractSynchronizedMapIterable.detectOptional(Predicate2<? super K, ? super V> predicate) <P> VAbstractMapIterable.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VAbstractMapIterable.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) AbstractMapIterable.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanAbstractMapIterable.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableCollection<V> AbstractSynchronizedMapIterable.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) booleanAbstractSynchronizedMapIterable.removeIf(Predicate2<? super K, ? super V> predicate) <P> MutableCollection<V> AbstractSynchronizedMapIterable.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.map.fixed
Methods in org.eclipse.collections.impl.map.fixed with parameters of type Predicate2Modifier and TypeMethodDescriptionDoubletonMap.detect(Predicate2<? super K, ? super V> predicate) EmptyMap.detect(Predicate2<? super K, ? super V> predicate) SingletonMap.detect(Predicate2<? super K, ? super V> predicate) TripletonMap.detect(Predicate2<? super K, ? super V> predicate) private FixedSizeMap<K, V> DoubletonMap.filter(Predicate2<? super K, ? super V> predicate) private FixedSizeMap<K, V> TripletonMap.filter(Predicate2<? super K, ? super V> predicate) abstract FixedSizeMap<K, V> AbstractMemoryEfficientMutableMap.reject(Predicate2<? super K, ? super V> predicate) DoubletonMap.reject(Predicate2<? super K, ? super V> predicate) EmptyMap.reject(Predicate2<? super K, ? super V> predicate) SingletonMap.reject(Predicate2<? super K, ? super V> predicate) TripletonMap.reject(Predicate2<? super K, ? super V> predicate) booleanAbstractMemoryEfficientMutableMap.removeIf(Predicate2<? super K, ? super V> predicate) abstract FixedSizeMap<K, V> AbstractMemoryEfficientMutableMap.select(Predicate2<? super K, ? super V> predicate) DoubletonMap.select(Predicate2<? super K, ? super V> predicate) EmptyMap.select(Predicate2<? super K, ? super V> predicate) SingletonMap.select(Predicate2<? super K, ? super V> predicate) TripletonMap.select(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type Predicate2Modifier and TypeMethodDescriptionAbstractImmutableMap.detect(Predicate2<? super K, ? super V> predicate) ImmutableDoubletonMap.detect(Predicate2<? super K, ? super V> predicate) ImmutableEmptyMap.detect(Predicate2<? super K, ? super V> predicate) ImmutableQuadrupletonMap.detect(Predicate2<? super K, ? super V> predicate) ImmutableSingletonMap.detect(Predicate2<? super K, ? super V> predicate) ImmutableTripletonMap.detect(Predicate2<? super K, ? super V> predicate) AbstractImmutableMap.detectOptional(Predicate2<? super K, ? super V> predicate) private ImmutableMap<K, V> ImmutableDoubletonMap.filter(Predicate2<? super K, ? super V> predicate) private ImmutableMap<K, V> ImmutableQuadrupletonMap.filter(Predicate2<? super K, ? super V> predicate) private ImmutableMap<K, V> ImmutableTripletonMap.filter(Predicate2<? super K, ? super V> predicate) <P> PartitionImmutableBag<V> AbstractImmutableMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableMap.reject(Predicate2<? super K, ? super V> predicate) ImmutableDoubletonMap.reject(Predicate2<? super K, ? super V> predicate) ImmutableEmptyMap.reject(Predicate2<? super K, ? super V> predicate) ImmutableQuadrupletonMap.reject(Predicate2<? super K, ? super V> predicate) ImmutableSingletonMap.reject(Predicate2<? super K, ? super V> predicate) ImmutableTripletonMap.reject(Predicate2<? super K, ? super V> predicate) <P> ImmutableBag<V> AbstractImmutableMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableMap.select(Predicate2<? super K, ? super V> predicate) ImmutableDoubletonMap.select(Predicate2<? super K, ? super V> predicate) ImmutableEmptyMap.select(Predicate2<? super K, ? super V> predicate) ImmutableQuadrupletonMap.select(Predicate2<? super K, ? super V> predicate) ImmutableSingletonMap.select(Predicate2<? super K, ? super V> predicate) ImmutableTripletonMap.select(Predicate2<? super K, ? super V> predicate) <P> ImmutableBag<V> AbstractImmutableMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanImmutableByteObjectEmptyMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableByteObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableByteObjectSingletonMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableCharObjectEmptyMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableCharObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableCharObjectSingletonMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableDoubleObjectEmptyMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableDoubleObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableDoubleObjectSingletonMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableFloatObjectEmptyMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableFloatObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableFloatObjectSingletonMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableIntObjectEmptyMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableIntObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableIntObjectSingletonMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableLongObjectEmptyMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableLongObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableLongObjectSingletonMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableShortObjectEmptyMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableShortObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableShortObjectSingletonMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableByteObjectEmptyMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableByteObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableByteObjectSingletonMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableCharObjectEmptyMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableCharObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableCharObjectSingletonMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableDoubleObjectEmptyMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableDoubleObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableDoubleObjectSingletonMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableFloatObjectEmptyMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableFloatObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableFloatObjectSingletonMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableIntObjectEmptyMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableIntObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableIntObjectSingletonMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableLongObjectEmptyMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableLongObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableLongObjectSingletonMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableShortObjectEmptyMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableShortObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableShortObjectSingletonMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableByteObjectEmptyMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableByteObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableByteObjectSingletonMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableCharObjectEmptyMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableCharObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableCharObjectSingletonMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableDoubleObjectEmptyMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableDoubleObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableDoubleObjectSingletonMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableFloatObjectEmptyMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableFloatObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableFloatObjectSingletonMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableIntObjectEmptyMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableIntObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableIntObjectSingletonMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableLongObjectEmptyMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableLongObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableLongObjectSingletonMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableShortObjectEmptyMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableShortObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intImmutableShortObjectSingletonMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableByteObjectEmptyMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableByteObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableByteObjectSingletonMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableCharObjectEmptyMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableCharObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableCharObjectSingletonMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableDoubleObjectEmptyMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableDoubleObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableDoubleObjectSingletonMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableFloatObjectEmptyMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableFloatObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableFloatObjectSingletonMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableIntObjectEmptyMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableIntObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableIntObjectSingletonMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableLongObjectEmptyMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableLongObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableLongObjectSingletonMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableShortObjectEmptyMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableShortObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableShortObjectSingletonMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VImmutableByteObjectEmptyMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableByteObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableByteObjectSingletonMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableCharObjectEmptyMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableCharObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableCharObjectSingletonMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableDoubleObjectEmptyMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableDoubleObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableDoubleObjectSingletonMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableFloatObjectEmptyMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableFloatObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableFloatObjectSingletonMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableIntObjectEmptyMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableIntObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableIntObjectSingletonMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableLongObjectEmptyMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableLongObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableLongObjectSingletonMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableShortObjectEmptyMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableShortObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VImmutableShortObjectSingletonMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) ImmutableByteObjectEmptyMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableByteObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableByteObjectSingletonMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableCharObjectEmptyMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableCharObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableCharObjectSingletonMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableDoubleObjectEmptyMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableDoubleObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableDoubleObjectSingletonMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableFloatObjectEmptyMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableFloatObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableFloatObjectSingletonMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableIntObjectEmptyMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableIntObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableIntObjectSingletonMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableLongObjectEmptyMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableLongObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableLongObjectSingletonMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableShortObjectEmptyMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableShortObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableShortObjectSingletonMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableByteObjectEmptyMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableByteObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableByteObjectSingletonMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableCharObjectEmptyMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableCharObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableCharObjectSingletonMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableDoubleObjectEmptyMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableDoubleObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableDoubleObjectSingletonMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableFloatObjectEmptyMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableFloatObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableFloatObjectSingletonMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableIntObjectEmptyMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableIntObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableIntObjectSingletonMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableLongObjectEmptyMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableLongObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableLongObjectSingletonMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableShortObjectEmptyMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableShortObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanImmutableShortObjectSingletonMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableByteObjectEmptyMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableByteObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableByteObjectSingletonMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableCharObjectEmptyMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableCharObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableCharObjectSingletonMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableDoubleObjectEmptyMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableDoubleObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableDoubleObjectSingletonMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableFloatObjectEmptyMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableFloatObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableFloatObjectSingletonMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableIntObjectEmptyMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableIntObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableIntObjectSingletonMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableLongObjectEmptyMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableLongObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableLongObjectSingletonMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableShortObjectEmptyMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableShortObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionImmutableBag<V> ImmutableShortObjectSingletonMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> ImmutableBag<V> ImmutableByteObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableByteObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableByteObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableByteObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableByteObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableByteObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableCharObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableCharObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableCharObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableCharObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableCharObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableCharObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableDoubleObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableDoubleObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableDoubleObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableDoubleObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableDoubleObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableDoubleObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableFloatObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableFloatObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableFloatObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableFloatObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableFloatObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableFloatObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableIntObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableIntObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableIntObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableIntObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableIntObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableIntObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableLongObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableLongObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableLongObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableLongObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableLongObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableLongObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableShortObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableShortObjectEmptyMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableShortObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableShortObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableShortObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableShortObjectSingletonMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableByteObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableByteObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableByteObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableByteObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableByteObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableByteObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableCharObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableCharObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableCharObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableCharObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableCharObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableCharObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableDoubleObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableDoubleObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableDoubleObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableDoubleObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableDoubleObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableDoubleObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableFloatObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableFloatObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableFloatObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableFloatObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableFloatObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableFloatObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableIntObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableIntObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableIntObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableIntObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableIntObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableIntObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableLongObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableLongObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableLongObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableLongObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableLongObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableLongObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> ImmutableBag<V> ImmutableShortObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableShortObjectEmptyMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableShortObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableShortObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R target) <P> ImmutableBag<V> ImmutableShortObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RImmutableShortObjectSingletonMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanUnifiedMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableMutableMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnifiedMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableMutableMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intUnmodifiableMutableMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractMutableMapIterable.detect(Predicate2<? super K, ? super V> predicate) UnifiedMap.detect(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableMap.detect(Predicate2<? super K, ? super V> predicate) AbstractMutableMapIterable.detectOptional(Predicate2<? super K, ? super V> predicate) UnifiedMap.detectOptional(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableMap.detectOptional(Predicate2<? super K, ? super V> predicate) <P> VUnifiedMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableMutableMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnifiedMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VUnmodifiableMutableMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) UnifiedMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableMutableMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnifiedMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableMutableMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> AbstractMutableMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> SynchronizedMutableMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> UnmodifiableMutableMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) MutableMap<K, V> AbstractMutableMap.reject(Predicate2<? super K, ? super V> predicate) MutableMap<K, V> SynchronizedMutableMap.reject(Predicate2<? super K, ? super V> predicate) MutableMap<K, V> UnmodifiableMutableMap.reject(Predicate2<? super K, ? super V> predicate) <P> MutableBag<V> AbstractMutableMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V> SynchronizedMutableMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V> UnmodifiableMutableMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableMutableMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) booleanUnifiedMap.removeIf(Predicate2<? super K, ? super V> predicate) booleanUnmodifiableMutableMap.removeIf(Predicate2<? super K, ? super V> predicate) MutableMap<K, V> AbstractMutableMap.select(Predicate2<? super K, ? super V> predicate) MutableMap<K, V> SynchronizedMutableMap.select(Predicate2<? super K, ? super V> predicate) MutableMap<K, V> UnmodifiableMutableMap.select(Predicate2<? super K, ? super V> predicate) <P> MutableBag<V> AbstractMutableMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V> SynchronizedMutableMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V> UnmodifiableMutableMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableMutableMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) private <P> booleanUnifiedMap.shortCircuitWith(Predicate2<? super V, ? super P> predicate, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate2 in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanByteObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanCharObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanDoubleObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFloatObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanIntObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanLongObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanShortObjectHashMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedByteObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedCharObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedDoubleObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedFloatObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedIntObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedLongObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedShortObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableByteObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableCharObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableDoubleObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableFloatObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableIntObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableLongObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableShortObjectMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanByteObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanCharObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanDoubleObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFloatObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanIntObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanLongObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanShortObjectHashMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedByteObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedCharObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedDoubleObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedFloatObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedIntObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedLongObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedShortObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableByteObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableCharObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableDoubleObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableFloatObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableIntObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableLongObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableShortObjectMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intByteObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intCharObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intDoubleObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intFloatObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intIntObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intLongObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intShortObjectHashMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intSynchronizedByteObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intSynchronizedCharObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intSynchronizedDoubleObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intSynchronizedFloatObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intSynchronizedIntObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intSynchronizedLongObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intSynchronizedShortObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intUnmodifiableByteObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intUnmodifiableCharObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intUnmodifiableDoubleObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intUnmodifiableFloatObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intUnmodifiableIntObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intUnmodifiableLongObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> intUnmodifiableShortObjectMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VByteObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VCharObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VDoubleObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VFloatObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VIntObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VLongObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VShortObjectHashMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VSynchronizedByteObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VSynchronizedCharObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VSynchronizedDoubleObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VSynchronizedFloatObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VSynchronizedIntObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VSynchronizedLongObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VSynchronizedShortObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableByteObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableCharObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableDoubleObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableFloatObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableIntObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableLongObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableShortObjectMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VByteObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VCharObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VDoubleObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VFloatObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VIntObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VLongObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VShortObjectHashMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VSynchronizedByteObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VSynchronizedCharObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VSynchronizedDoubleObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VSynchronizedFloatObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VSynchronizedIntObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VSynchronizedLongObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VSynchronizedShortObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VUnmodifiableByteObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VUnmodifiableCharObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VUnmodifiableDoubleObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VUnmodifiableFloatObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VUnmodifiableIntObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VUnmodifiableLongObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) <P> VUnmodifiableShortObjectMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) ByteObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) CharObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) DoubleObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) FloatObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) IntObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) LongObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) ShortObjectHashMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedByteObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedCharObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedDoubleObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedFloatObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedIntObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedLongObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) SynchronizedShortObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableByteObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableCharObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableDoubleObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableFloatObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableIntObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableLongObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableShortObjectMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanByteObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanCharObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanDoubleObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanFloatObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanIntObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanLongObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanShortObjectHashMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedByteObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedCharObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedDoubleObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedFloatObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedIntObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedLongObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanSynchronizedShortObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableByteObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableCharObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableDoubleObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableFloatObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableIntObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableLongObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableShortObjectMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> ByteObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> CharObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> DoubleObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> FloatObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> IntObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> LongObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> ShortObjectHashMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> SynchronizedByteObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> SynchronizedCharObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> SynchronizedDoubleObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> SynchronizedFloatObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> SynchronizedIntObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> SynchronizedLongObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> SynchronizedShortObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> UnmodifiableByteObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> UnmodifiableCharObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> UnmodifiableDoubleObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> UnmodifiableFloatObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> UnmodifiableIntObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> UnmodifiableLongObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableBag<V> UnmodifiableShortObjectMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableBag<V> ByteObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RByteObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> CharObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RCharObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> DoubleObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RDoubleObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> FloatObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RFloatObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> IntObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RIntObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> LongObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RLongObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> ShortObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RShortObjectHashMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedByteObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedByteObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedCharObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedCharObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedDoubleObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedDoubleObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedFloatObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedFloatObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedIntObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedIntObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedLongObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedLongObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedShortObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedShortObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableByteObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableByteObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableCharObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableCharObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableDoubleObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableDoubleObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableFloatObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableFloatObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableIntObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableIntObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableLongObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableLongObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableShortObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableShortObjectMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> ByteObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RByteObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> CharObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RCharObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> DoubleObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RDoubleObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> FloatObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RFloatObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> IntObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RIntObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> LongObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RLongObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> ShortObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RShortObjectHashMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedByteObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedByteObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedCharObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedCharObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedDoubleObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedDoubleObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedFloatObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedFloatObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedIntObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedIntObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedLongObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedLongObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> SynchronizedShortObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RSynchronizedShortObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableByteObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableByteObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableCharObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableCharObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableDoubleObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableDoubleObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableFloatObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableFloatObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableIntObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableIntObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableLongObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableLongObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) <P> MutableBag<V> UnmodifiableShortObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableShortObjectMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<S> booleanImmutableOrderedMapAdapter.corresponds(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) ImmutableOrderedMapAdapter.detect(Predicate2<? super K, ? super V> predicate) ImmutableOrderedMapAdapter.detectOptional(Predicate2<? super K, ? super V> predicate) <P> PartitionImmutableList<V> ImmutableOrderedMapAdapter.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableOrderedMapAdapter.reject(Predicate2<? super K, ? super V> predicate) <P> ImmutableList<V> ImmutableOrderedMapAdapter.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) ImmutableOrderedMapAdapter.select(Predicate2<? super K, ? super V> predicate) <P> ImmutableList<V> ImmutableOrderedMapAdapter.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanUnmodifiableMutableOrderedMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableMutableOrderedMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> booleanOrderedMapAdapter.corresponds(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) <S> booleanUnmodifiableMutableOrderedMap.corresponds(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) <P> intUnmodifiableMutableOrderedMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) OrderedMapAdapter.detect(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableOrderedMap.detect(Predicate2<? super K, ? super V> predicate) OrderedMapAdapter.detectOptional(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableOrderedMap.detectOptional(Predicate2<? super K, ? super V> predicate) <P> VUnmodifiableMutableOrderedMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableMutableOrderedMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) UnmodifiableMutableOrderedMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableMutableOrderedMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V> OrderedMapAdapter.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V> UnmodifiableMutableOrderedMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) OrderedMapAdapter.reject(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableOrderedMap.reject(Predicate2<? super K, ? super V> predicate) <P> MutableList<V> OrderedMapAdapter.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> UnmodifiableMutableOrderedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableMutableOrderedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) booleanUnmodifiableMutableOrderedMap.removeIf(Predicate2<? super K, ? super V> predicate) OrderedMapAdapter.select(Predicate2<? super K, ? super V> predicate) UnmodifiableMutableOrderedMap.select(Predicate2<? super K, ? super V> predicate) <P> MutableList<V> OrderedMapAdapter.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> UnmodifiableMutableOrderedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableMutableOrderedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<S> booleanAbstractImmutableSortedMap.corresponds(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) AbstractImmutableSortedMap.detect(Predicate2<? super K, ? super V> predicate) ImmutableEmptySortedMap.detect(Predicate2<? super K, ? super V> predicate) AbstractImmutableSortedMap.detectOptional(Predicate2<? super K, ? super V> predicate) ImmutableEmptySortedMap.detectOptional(Predicate2<? super K, ? super V> predicate) <P> PartitionImmutableList<V> AbstractImmutableSortedMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableSortedMap.reject(Predicate2<? super K, ? super V> predicate) ImmutableEmptySortedMap.reject(Predicate2<? super K, ? super V> predicate) <P> ImmutableList<V> AbstractImmutableSortedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractImmutableSortedMap.select(Predicate2<? super K, ? super V> predicate) ImmutableEmptySortedMap.select(Predicate2<? super K, ? super V> predicate) <P> ImmutableList<V> AbstractImmutableSortedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanUnmodifiableTreeMap.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableTreeMap.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <S> booleanAbstractMutableSortedMap.corresponds(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) <S> booleanSynchronizedSortedMap.corresponds(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) <S> booleanUnmodifiableTreeMap.corresponds(OrderedIterable<S> other, Predicate2<? super V, ? super S> predicate) <P> intUnmodifiableTreeMap.countWith(Predicate2<? super V, ? super P> predicate, P parameter) UnmodifiableTreeMap.detect(Predicate2<? super K, ? super V> predicate) UnmodifiableTreeMap.detectOptional(Predicate2<? super K, ? super V> predicate) <P> VUnmodifiableTreeMap.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnmodifiableTreeMap.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) UnmodifiableTreeMap.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnmodifiableTreeMap.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V> AbstractMutableSortedMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V> SynchronizedSortedMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> PartitionMutableList<V> UnmodifiableTreeMap.partitionWith(Predicate2<? super V, ? super P> predicate, P parameter) AbstractMutableSortedMap.reject(Predicate2<? super K, ? super V> predicate) SynchronizedSortedMap.reject(Predicate2<? super K, ? super V> predicate) UnmodifiableTreeMap.reject(Predicate2<? super K, ? super V> predicate) <P> MutableList<V> AbstractMutableSortedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> SynchronizedSortedMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> UnmodifiableTreeMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableTreeMap.rejectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) booleanUnmodifiableTreeMap.removeIf(Predicate2<? super K, ? super V> predicate) AbstractMutableSortedMap.select(Predicate2<? super K, ? super V> predicate) SynchronizedSortedMap.select(Predicate2<? super K, ? super V> predicate) UnmodifiableTreeMap.select(Predicate2<? super K, ? super V> predicate) <P> MutableList<V> AbstractMutableSortedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> SynchronizedSortedMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> MutableList<V> UnmodifiableTreeMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P, R extends Collection<V>>
RUnmodifiableTreeMap.selectWith(Predicate2<? super V, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.map.strategy.immutable
Methods in org.eclipse.collections.impl.map.strategy.immutable with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableEmptyMapWithHashingStrategy.detect(Predicate2<? super K, ? super V> predicate) ImmutableEmptyMapWithHashingStrategy.reject(Predicate2<? super K, ? super V> predicate) ImmutableUnifiedMapWithHashingStrategy.reject(Predicate2<? super K, ? super V> predicate) ImmutableEmptyMapWithHashingStrategy.select(Predicate2<? super K, ? super V> predicate) ImmutableUnifiedMapWithHashingStrategy.select(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.map.strategy.mutable
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanUnifiedMapWithHashingStrategy.allSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnifiedMapWithHashingStrategy.anySatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) UnifiedMapWithHashingStrategy.detect(Predicate2<? super K, ? super V> predicate) UnifiedMapWithHashingStrategy.detectOptional(Predicate2<? super K, ? super V> predicate) <P> VUnifiedMapWithHashingStrategy.detectWith(Predicate2<? super V, ? super P> predicate, P parameter) <P> VUnifiedMapWithHashingStrategy.detectWithIfNone(Predicate2<? super V, ? super P> predicate, P parameter, Function0<? extends V> function) UnifiedMapWithHashingStrategy.detectWithOptional(Predicate2<? super V, ? super P> predicate, P parameter) <P> booleanUnifiedMapWithHashingStrategy.noneSatisfyWith(Predicate2<? super V, ? super P> predicate, P parameter) booleanUnifiedMapWithHashingStrategy.removeIf(Predicate2<? super K, ? super V> predicate) private <P> booleanUnifiedMapWithHashingStrategy.shortCircuitWith(Predicate2<? super V, ? super P> predicate, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap
Methods in org.eclipse.collections.impl.multimap with parameters of type Predicate2Modifier and TypeMethodDescription<R extends MutableMultimap<K,V>>
RAbstractMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) <R extends MutableMultimap<K,V>>
RAbstractSynchronizedMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) <R extends MutableMultimap<K,V>>
RAbstractMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate, R target) <R extends MutableMultimap<K,V>>
RAbstractSynchronizedMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate, R target) <R extends MutableMultimap<K,V>>
RAbstractMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) <R extends MutableMultimap<K,V>>
RAbstractSynchronizedMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate, R target) <R extends MutableMultimap<K,V>>
RAbstractMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate, R target) <R extends MutableMultimap<K,V>>
RAbstractSynchronizedMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.bag
Methods in org.eclipse.collections.impl.multimap.bag with parameters of type Predicate2Modifier and TypeMethodDescriptionHashBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagMultimapImpl.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderHashBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutHashBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Deprecated.HashBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableBagMultimapImpl.rejectKeysValues(Predicate2<? super K, ? super V> predicate) MultiReaderHashBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedPutHashBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) TreeBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) Deprecated.HashBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableBagMultimapImpl.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderHashBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutHashBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Deprecated.HashBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableBagMultimapImpl.selectKeysValues(Predicate2<? super K, ? super V> predicate) MultiReaderHashBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedPutHashBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) TreeBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) Deprecated. -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.bag.sorted
Methods in org.eclipse.collections.impl.multimap.bag.sorted with parameters of type Predicate2Modifier and TypeMethodDescriptionTreeBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Deprecated.TreeBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) Deprecated.TreeBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) Deprecated.TreeBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) Deprecated. -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.bag.sorted.immutable
Methods in org.eclipse.collections.impl.multimap.bag.sorted.immutable with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSortedBagMultimapImpl.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedBagMultimapImpl.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableSortedBagMultimapImpl.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedBagMultimapImpl.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.bag.sorted.mutable
Methods in org.eclipse.collections.impl.multimap.bag.sorted.mutable with parameters of type Predicate2Modifier and TypeMethodDescriptionSynchronizedSortedBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeBagMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSortedBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) TreeBagMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedSortedBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeBagMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSortedBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) TreeBagMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.bag.strategy
Methods in org.eclipse.collections.impl.multimap.bag.strategy with parameters of type Predicate2Modifier and TypeMethodDescriptionHashBagMultimapWithHashingStrategy.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) HashBagMultimapWithHashingStrategy.rejectKeysValues(Predicate2<? super K, ? super V> predicate) HashBagMultimapWithHashingStrategy.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) HashBagMultimapWithHashingStrategy.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.list
Methods in org.eclipse.collections.impl.multimap.list with parameters of type Predicate2Modifier and TypeMethodDescriptionFastListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableListMultimapImpl.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderFastListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutFastListMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) FastListMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableListMultimapImpl.rejectKeysValues(Predicate2<? super K, ? super V> predicate) MultiReaderFastListMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedListMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedPutFastListMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) FastListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableListMultimapImpl.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderFastListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutFastListMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) FastListMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableListMultimapImpl.selectKeysValues(Predicate2<? super K, ? super V> predicate) MultiReaderFastListMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedListMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedPutFastListMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.set
Methods in org.eclipse.collections.impl.multimap.set with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSetMultimapImpl.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderUnifiedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutUnifiedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnifiedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetMultimapImpl.rejectKeysValues(Predicate2<? super K, ? super V> predicate) MultiReaderUnifiedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedPutUnifiedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) UnifiedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableSetMultimapImpl.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) MultiReaderUnifiedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutUnifiedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnifiedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSetMultimapImpl.selectKeysValues(Predicate2<? super K, ? super V> predicate) MultiReaderUnifiedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedPutUnifiedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) UnifiedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted with parameters of type Predicate2Modifier and TypeMethodDescriptionImmutableSortedSetMultimapImpl.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutTreeSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeSortedSetMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedSetMultimapImpl.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedPutTreeSortedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedSortedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) TreeSortedSetMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) ImmutableSortedSetMultimapImpl.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedPutTreeSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) SynchronizedSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) TreeSortedSetMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) ImmutableSortedSetMultimapImpl.selectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedPutTreeSortedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) SynchronizedSortedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) TreeSortedSetMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.multimap.set.strategy
Methods in org.eclipse.collections.impl.multimap.set.strategy with parameters of type Predicate2Modifier and TypeMethodDescriptionUnifiedSetWithHashingStrategyMultimap.rejectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnifiedSetWithHashingStrategyMultimap.rejectKeysValues(Predicate2<? super K, ? super V> predicate) UnifiedSetWithHashingStrategyMultimap.selectKeysMultiValues(Predicate2<? super K, ? super RichIterable<V>> predicate) UnifiedSetWithHashingStrategyMultimap.selectKeysValues(Predicate2<? super K, ? super V> predicate) -
Uses of Predicate2 in org.eclipse.collections.impl.partition.stack
Fields in org.eclipse.collections.impl.partition.stack declared as Predicate2Modifier and TypeFieldDescriptionprivate final Predicate2<? super T, ? super P> PartitionArrayStack.PartitionPredicate2Procedure.predicateConstructors in org.eclipse.collections.impl.partition.stack with parameters of type Predicate2ModifierConstructorDescriptionPartitionPredicate2Procedure(Predicate2<? super T, ? super P> predicate, P parameter, PartitionArrayStack<T> partitionMutableStack) -
Uses of Predicate2 in org.eclipse.collections.impl.set
Methods in org.eclipse.collections.impl.set with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractUnifiedSet.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractUnifiedSet.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanAbstractUnifiedSet.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) protected abstract <P> booleanAbstractUnifiedSet.shortCircuitWith(Predicate2<? super T, ? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate2 in org.eclipse.collections.impl.set.fixed
Methods in org.eclipse.collections.impl.set.fixed with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanAbstractMemoryEfficientMutableSet.removeIfWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanImmutableEmptySet.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableEmptySet.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intImmutableEmptySet.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableEmptySet.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionImmutableSet<T> AbstractImmutableSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSet<T> AbstractImmutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RImmutableEmptySet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ImmutableSet<T> AbstractImmutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RImmutableEmptySet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) -
Uses of Predicate2 in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type Predicate2Modifier and TypeMethodDescriptionprivate <P> booleanUnifiedSet.chainedShortCircuitWith(UnifiedSet.ChainedBucket bucket, Predicate2<? super T, ? super P> predicate, P parameter, boolean expected) <P> PartitionMutableSet<T> AbstractMutableSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableSet<T> MultiReaderUnifiedSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableSet<T> MultiReaderUnifiedSet.UntouchableMutableSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableSet<T> SetAdapter.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableSet<T> SynchronizedMutableSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableSet<T> UnifiedSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableSet<T> UnmodifiableMutableSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> AbstractMutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> MultiReaderUnifiedSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> MultiReaderUnifiedSet.UntouchableMutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> SetAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> SynchronizedMutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> UnifiedSet<T> UnifiedSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> UnmodifiableMutableSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> UnifiedSet.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> AbstractMutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> MultiReaderUnifiedSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> MultiReaderUnifiedSet.UntouchableMutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> SetAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> SynchronizedMutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> UnifiedSet<T> UnifiedSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSet<T> UnmodifiableMutableSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) protected <P> booleanUnifiedSet.shortCircuitWith(Predicate2<? super T, ? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate2 in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<S> booleanAbstractImmutableSortedSet.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanImmutableTreeSet.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) AbstractImmutableSortedSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedSet<T> AbstractImmutableSortedSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedSet<T> ImmutableEmptySortedSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedSet<T> AbstractImmutableSortedSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableSortedSet<T> ImmutableEmptySortedSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<S> booleanSortedSetAdapter.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanSynchronizedSortedSet.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanTreeSortedSet.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanUnmodifiableSortedSet.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) SortedSetAdapter.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedSortedSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) TreeSortedSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) UnmodifiableSortedSet.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet<T> SortedSetAdapter.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet<T> SynchronizedSortedSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TreeSortedSet<T> TreeSortedSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet<T> UnmodifiableSortedSet.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet<T> SortedSetAdapter.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet<T> SynchronizedSortedSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TreeSortedSet<T> TreeSortedSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> MutableSortedSet<T> UnmodifiableSortedSet.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.set.strategy.mutable
Methods in org.eclipse.collections.impl.set.strategy.mutable with parameters of type Predicate2Modifier and TypeMethodDescriptionprivate <P> booleanUnifiedSetWithHashingStrategy.chainedShortCircuitWith(UnifiedSetWithHashingStrategy.ChainedBucket bucket, Predicate2<? super T, ? super P> predicate, P parameter, boolean expected) <P> PartitionMutableSet<T> UnifiedSetWithHashingStrategy.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) UnifiedSetWithHashingStrategy.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> Twin<MutableList<T>> UnifiedSetWithHashingStrategy.selectAndRejectWith(Predicate2<? super T, ? super P> predicate, P parameter) UnifiedSetWithHashingStrategy.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) protected <P> booleanUnifiedSetWithHashingStrategy.shortCircuitWith(Predicate2<? super T, ? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) -
Uses of Predicate2 in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanImmutableArrayStack.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.<P> booleanImmutableArrayStack.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.<S> booleanImmutableArrayStack.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) Deprecated.<S> booleanImmutableEmptyStack.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanImmutableNotEmptyStack.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <P> intImmutableArrayStack.countWith(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.<P> intImmutableEmptyStack.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TImmutableArrayStack.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.<P> TImmutableEmptyStack.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TImmutableArrayStack.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) Deprecated.<P> TImmutableEmptyStack.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) ImmutableArrayStack.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.ImmutableEmptyStack.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanImmutableArrayStack.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.<P> PartitionImmutableStack<T> ImmutableArrayStack.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.<P> PartitionImmutableStack<T> ImmutableEmptyStack.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionImmutableStack<T> ImmutableNotEmptyStack.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableStack<T> ImmutableArrayStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.<P, R extends Collection<T>>
RImmutableArrayStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) Deprecated.<P> ImmutableStack<T> ImmutableEmptyStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RImmutableEmptyStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ImmutableStack<T> ImmutableNotEmptyStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ImmutableStack<T> ImmutableArrayStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.<P, R extends Collection<T>>
RImmutableArrayStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) Deprecated.<P> ImmutableStack<T> ImmutableEmptyStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RImmutableEmptyStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R target) <P> ImmutableStack<T> ImmutableNotEmptyStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) -
Uses of Predicate2 in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type Predicate2Modifier and TypeMethodDescription<P> booleanArrayStack.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanSynchronizedStack.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanUnmodifiableStack.allSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanArrayStack.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanSynchronizedStack.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanUnmodifiableStack.anySatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <S> booleanArrayStack.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanSynchronizedStack.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <S> booleanUnmodifiableStack.corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) <P> intArrayStack.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intSynchronizedStack.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> intUnmodifiableStack.countWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TArrayStack.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TSynchronizedStack.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TUnmodifiableStack.detectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> TArrayStack.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TSynchronizedStack.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) <P> TUnmodifiableStack.detectWithIfNone(Predicate2<? super T, ? super P> predicate, P parameter, Function0<? extends T> function) ArrayStack.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) SynchronizedStack.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) UnmodifiableStack.detectWithOptional(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanArrayStack.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanSynchronizedStack.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> booleanUnmodifiableStack.noneSatisfyWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableStack<T> ArrayStack.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableStack<T> SynchronizedStack.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> PartitionMutableStack<T> UnmodifiableStack.partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) <P> ArrayStack<T> ArrayStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RArrayStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> MutableStack<T> SynchronizedStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RSynchronizedStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> MutableStack<T> UnmodifiableStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RUnmodifiableStack.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> ArrayStack<T> ArrayStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RArrayStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> MutableStack<T> SynchronizedStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RSynchronizedStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) <P> MutableStack<T> UnmodifiableStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) <P, R extends Collection<T>>
RUnmodifiableStack.selectWith(Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) -
Uses of Predicate2 in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type Predicate2Modifier and TypeMethodDescriptionstatic <T,P> boolean ArrayIterate.allSatisfyWith(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter) static <T,IV> boolean ArrayListIterate.allSatisfyWith(ArrayList<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,P> boolean Iterate.allSatisfyWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) Returns true if the predicate evaluates to true for every element of the iterable, or returns false.static <T,IV> boolean ListIterate.allSatisfyWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,P> boolean ArrayIterate.anySatisfyWith(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean ArrayListIterate.anySatisfyWith(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean Iterate.anySatisfyWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) Returns true if the predicate2 and parameter evaluates to true for any element of the iterable.static <T,IV> boolean ListIterate.anySatisfyWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <K1,V1, K2, V2>
MutableMap<K2, V2> MapIterate.collectIf(Map<K1, V1> map, Function2<? super K1, ? super V1, Pair<K2, V2>> function, Predicate2<? super K1, ? super V1> predicate) For each value of the map, the Predicate2 is evaluated with the key and value as the parameter, and if true, thenfunctionis applied.static <K1,V1, K2, V2>
MutableMap<K2, V2> MapIterate.collectIf(Map<K1, V1> map, Function2<? super K1, ? super V1, Pair<K2, V2>> function, Predicate2<? super K1, ? super V1> predicate, Map<K2, V2> target) For each value of the map, the Predicate2 is evaluated with the key and value as the parameter, and if true, thenfunctionis applied.static <S,T> boolean OrderedIterate.corresponds(OrderedIterable<T> o1, OrderedIterable<S> o2, Predicate2<? super T, ? super S> predicate) static <T,P> int ArrayIterate.countWith(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> int ArrayListIterate.countWith(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,IV> int Iterate.countWith(Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV injectedValue) Returns the total number of elements that evaluate to true for the specified predicate2 and parameter.static <T,IV> int ListIterate.countWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <K,V> Pair <K, V> MapIterate.detect(Map<K, V> map, Predicate2<? super K, ? super V> predicate) static <T,IV> int ArrayIterate.detectIndexWith(T[] objectArray, Predicate2<? super T, ? super IV> predicate, IV injectedValue) Searches for the first index where the predicate evaluates totrue.static <T,P> int ArrayListIterate.detectIndexWith(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> int Iterate.detectIndexWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) Searches for the first occurrence where the predicate2 and parameter evaluates to true, returns -1 if the predicate2 and parameter do not evaluate to true.static <T,P> int ListIterate.detectIndexWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter) Searches for the first index where the predicate2 and parameter evaluates to true.MapIterate.detectOptional(Map<K, V> map, Predicate2<? super K, ? super V> predicate) static <T,P> T ArrayIterate.detectWith(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> T ArrayListIterate.detectWith(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> T Iterate.detectWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter, or null if no element evaluates to true.static <T,IV> T ListIterate.detectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,P> T ArrayIterate.detectWithIfNone(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter, T ifNone) static <T,IV> T ArrayListIterate.detectWithIfNone(ArrayList<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue, T ifNone) static <T,P> T Iterate.detectWithIfNone(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter, T ifNone) Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter, or returns the result ifNone if no element evaluates to true.static <T,IV> T ListIterate.detectWithIfNone(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue, T ifNone) static <T,P> Optional <T> ArrayIterate.detectWithOptional(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> Optional <T> ArrayListIterate.detectWithOptional(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> Optional <T> Iterate.detectWithOptional(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) Returns the first element of the iterable that evaluates to true for the specified predicate2 and parameter as an Optional.static <T,IV> Optional <T> ListIterate.detectWithOptional(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,P> boolean ArrayIterate.noneSatisfyWith(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter) static <T,IV> boolean ArrayListIterate.noneSatisfyWith(ArrayList<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,P> boolean Iterate.noneSatisfyWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) Returns true if the predicate evaluates to false for every element of the iterable, or returns false.static <T,P> boolean ListIterate.noneSatisfyWith(List<T> list, Predicate2<? super T, ? super P> predicate, P injectedValue) static <T,P> PartitionFastList <T> ArrayIterate.partitionWith(T[] array, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> PartitionMutableList <T> ArrayListIterate.partitionWith(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> PartitionIterable <T> Iterate.partitionWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) Filters a collection into a PartitionIterable based on a predicate.static <T,P> PartitionMutableList <T> ListIterate.partitionWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <K,V> MutableMap <K, V> MapIterate.rejectMapOnEntry(Map<K, V> map, Predicate2<? super K, ? super V> predicate) For each value of the map, predicate is evaluated with the element as the parameter.static <K, V, R extends Map<K,V>>
RMapIterate.rejectMapOnEntry(Map<K, V> map, Predicate2<? super K, ? super V> predicate, R target) For each value of the map, predicate is evaluated with the element as the parameter.static <T, P, R extends Collection<T>>
RArrayIterate.rejectWith(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) static <T,P> MutableList <T> ArrayIterate.rejectWith(T[] objectArray, Predicate2<? super T, P> predicate, P parameter) static <T,IV> ArrayList <T> ArrayListIterate.rejectWith(ArrayList<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T, P, R extends Collection<T>>
RArrayListIterate.rejectWith(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P injectedValue, R targetCollection) static <T,P> Collection <T> Iterate.rejectWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) Similar toIterate.reject(Iterable, Predicate), except with an evaluation parameter for the second generic argument inPredicate2.static <T, P, R extends Collection<T>>
RIterate.rejectWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) Same as the reject method with two parameters but uses the specified target collection.static <T,IV> MutableList <T> ListIterate.rejectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T, P, R extends Collection<T>>
RListIterate.rejectWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) static <T,P> boolean ArrayListIterate.removeIfWith(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean Iterate.removeIfWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) Removes all elements of the iterable that evaluate to true for the specified predicate2 and parameter.static <T,P> boolean ListIterate.removeIfWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean ListIterate.removeIfWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter, Procedure<? super T> procedure) static <T,P> Twin <MutableList<T>> ArrayIterate.selectAndRejectWith(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.since 6.0 useRichIterable.partitionWith(Predicate2, Object)instead.static <T,P> Twin <MutableList<T>> ArrayListIterate.selectAndRejectWith(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,IV> Twin <MutableList<T>> Iterate.selectAndRejectWith(Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV injectedValue) Filters a collection into two separate collections based on a predicate returned via a Twin.static <T,IV> Twin <MutableList<T>> ListIterate.selectAndRejectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <K,V> MutableMap <K, V> MapIterate.selectMapOnEntry(Map<K, V> map, Predicate2<? super K, ? super V> predicate) For each entry of the source map, the Predicate2 is evaluated.static <K, V, R extends Map<K,V>>
RMapIterate.selectMapOnEntry(Map<K, V> map, Predicate2<? super K, ? super V> predicate, R target) For each entry of the source map, the Predicate2 is evaluated.static <T, P, R extends Collection<T>>
RArrayIterate.selectWith(T[] objectArray, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) static <T,P> MutableList <T> ArrayIterate.selectWith(T[] objectArray, Predicate2<? super T, P> predicate, P parameter) static <T,IV> ArrayList <T> ArrayListIterate.selectWith(ArrayList<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T, P, R extends Collection<T>>
RArrayListIterate.selectWith(ArrayList<T> list, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) static <T,IV> Collection <T> Iterate.selectWith(Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV parameter) Returns a new collection with only elements that evaluated to true for the specified predicate and parameter.static <T, P, R extends Collection<T>>
RIterate.selectWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) Same as the selectWith method with two parameters but uses the specified target collection.static <T,IV> MutableList <T> ListIterate.selectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T, P, R extends Collection<T>>
RListIterate.selectWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) static <T, L extends List<T>>
LIterate.sortThis(L list, Predicate2<? super T, ? super T> predicate) SortThis is a mutating method. -
Uses of Predicate2 in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type Predicate2Modifier and TypeMethodDescriptionstatic <T,P> boolean InternalArrayIterate.allSatisfyWith(T[] array, int size, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean IterableIterate.allSatisfyWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean IteratorIterate.allSatisfyWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean RandomAccessListIterate.allSatisfyWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean InternalArrayIterate.anySatisfyWith(T[] array, int size, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean IterableIterate.anySatisfyWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean IteratorIterate.anySatisfyWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean RandomAccessListIterate.anySatisfyWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean InternalArrayIterate.corresponds(T[] array, int size, OrderedIterable<P> other, Predicate2<? super T, ? super P> predicate) static <T,P> boolean RandomAccessListIterate.corresponds(List<T> list, OrderedIterable<P> other, Predicate2<? super T, ? super P> predicate) static <T,P> int InternalArrayIterate.countWith(T[] array, int size, Predicate2<? super T, ? super P> predicate, P parameter) static <T,IV> int IterableIterate.countWith(Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,P> int IteratorIterate.countWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter) static <T,IV> int RandomAccessListIterate.countWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,IV> int IterableIterate.detectIndexWith(Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,IV> int IteratorIterate.detectIndexWith(Iterator<T> iterator, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,IV> int RandomAccessListIterate.detectIndexWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) Searches for the first occurrence where the predicate evaluates to true.static <T,P> T InternalArrayIterate.detectWith(T[] array, int size, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> T IterableIterate.detectWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> T IteratorIterate.detectWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> T RandomAccessListIterate.detectWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> Optional <T> InternalArrayIterate.detectWithOptional(T[] array, int size, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> Optional <T> IterableIterate.detectWithOptional(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> Optional <T> IteratorIterate.detectWithOptional(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> Optional <T> RandomAccessListIterate.detectWithOptional(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean InternalArrayIterate.noneSatisfyWith(T[] array, int size, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean IterableIterate.noneSatisfyWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean IteratorIterate.noneSatisfyWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean RandomAccessListIterate.noneSatisfyWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> PartitionFastList <T> InternalArrayIterate.partitionWith(T[] array, int size, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> PartitionMutableList <T> IterableIterate.partitionWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> PartitionMutableList <T> IteratorIterate.partitionWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> PartitionMutableList <T> RandomAccessListIterate.partitionWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T, P, R extends Collection<T>>
RInternalArrayIterate.rejectWith(T[] array, int size, Predicate2<? super T, ? super P> predicate, P parameter, R target) static <T, P, R extends Collection<T>>
RIterableIterate.rejectWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) static <T, P, R extends Collection<T>>
RIteratorIterate.rejectWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) static <T,IV> MutableList <T> RandomAccessListIterate.rejectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T, P, R extends Collection<T>>
RRandomAccessListIterate.rejectWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) static <T,P> boolean IterableIterate.removeIfWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean IterableIterate.removeIfWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P parameter, Procedure<? super T> procedure) static <T,P> boolean IteratorIterate.removeIfWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean IteratorIterate.removeIfWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter, Procedure<? super T> procedure) static <T,P> boolean RandomAccessListIterate.removeIfWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter) static <T,P> boolean RandomAccessListIterate.removeIfWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter, Procedure<? super T> procedure) static <T,P> Twin <MutableList<T>> InternalArrayIterate.selectAndRejectWith(T[] objectArray, int size, Predicate2<? super T, ? super P> predicate, P parameter) Deprecated.since 6.0 useRichIterable.partitionWith(Predicate2, Object)instead.static <T,IV> Twin <MutableList<T>> IterableIterate.selectAndRejectWith(Iterable<T> iterable, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T,P> Twin <MutableList<T>> IteratorIterate.selectAndRejectWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P parameter) static <T,IV> Twin <MutableList<T>> RandomAccessListIterate.selectAndRejectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T, P, R extends Collection<T>>
RInternalArrayIterate.selectWith(T[] array, int size, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) static <T, P, R extends Collection<T>>
RIterableIterate.selectWith(Iterable<T> iterable, Predicate2<? super T, ? super P> predicate, P injectedValue, R targetCollection) static <T, P, R extends Collection<T>>
RIteratorIterate.selectWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate, P injectedValue, R targetCollection) static <T,IV> MutableList <T> RandomAccessListIterate.selectWith(List<T> list, Predicate2<? super T, ? super IV> predicate, IV injectedValue) static <T, P, R extends Collection<T>>
RRandomAccessListIterate.selectWith(List<T> list, Predicate2<? super T, ? super P> predicate, P parameter, R targetCollection) static <T,P> boolean InternalArrayIterate.shortCircuitWith(T[] array, int size, Predicate2<? super T, ? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) static <T,P> boolean IteratorIterate.shortCircuitWith(Iterator<T> iterator, Predicate2<? super T, ? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd) static <T,P> boolean RandomAccessListIterate.shortCircuitWith(List<T> list, Predicate2<? super T, ? super P> predicate2, P parameter, boolean expected, boolean onShortCircuit, boolean atEnd)
RichIterable.partitionWith(Predicate2, Object)instead.