Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate
-
Packages that use DoubleObjectPredicate Package Description org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces. -
-
Uses of DoubleObjectPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type DoubleObjectPredicate Modifier and Type Method Description DoubleObjectMap<V>
DoubleObjectMap. reject(DoubleObjectPredicate<? super V> predicate)
Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectMap. reject(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
MutableDoubleObjectMap. reject(DoubleObjectPredicate<? super V> predicate)
DoubleObjectMap<V>
DoubleObjectMap. select(DoubleObjectPredicate<? super V> predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectMap. select(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
MutableDoubleObjectMap. select(DoubleObjectPredicate<? super V> predicate)
-
Uses of DoubleObjectPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type DoubleObjectPredicate Modifier and Type Method Description ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectEmptyMap. reject(DoubleObjectPredicate<? super V> predicate)
ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectHashMap. reject(DoubleObjectPredicate<? super V> predicate)
ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectSingletonMap. reject(DoubleObjectPredicate<? super V> predicate)
ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectEmptyMap. select(DoubleObjectPredicate<? super V> predicate)
ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectHashMap. select(DoubleObjectPredicate<? super V> predicate)
ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectSingletonMap. select(DoubleObjectPredicate<? super V> predicate)
-
Uses of DoubleObjectPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type DoubleObjectPredicate Modifier and Type Method Description DoubleObjectHashMap<V>
DoubleObjectHashMap. reject(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. reject(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. reject(DoubleObjectPredicate<? super V> predicate)
DoubleObjectHashMap<V>
DoubleObjectHashMap. select(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. select(DoubleObjectPredicate<? super V> predicate)
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. select(DoubleObjectPredicate<? super V> predicate)
-