Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ShortLongPredicate
-
Packages that use ShortLongPredicate 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 ShortLongPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ShortLongPredicate Modifier and Type Method Description ImmutableShortLongMap
ImmutableShortLongMap. reject(ShortLongPredicate predicate)
MutableShortLongMap
MutableShortLongMap. reject(ShortLongPredicate predicate)
ShortLongMap
ShortLongMap. reject(ShortLongPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableShortLongMap
ImmutableShortLongMap. select(ShortLongPredicate predicate)
MutableShortLongMap
MutableShortLongMap. select(ShortLongPredicate predicate)
ShortLongMap
ShortLongMap. select(ShortLongPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate. -
Uses of ShortLongPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ShortLongPredicate Modifier and Type Method Description ImmutableShortLongMap
ImmutableShortLongEmptyMap. reject(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongHashMap. reject(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongSingletonMap. reject(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongEmptyMap. select(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongHashMap. select(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongSingletonMap. select(ShortLongPredicate predicate)
-
Uses of ShortLongPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ShortLongPredicate Modifier and Type Method Description ShortLongHashMap
ShortLongHashMap. reject(ShortLongPredicate predicate)
MutableShortLongMap
SynchronizedShortLongMap. reject(ShortLongPredicate predicate)
MutableShortLongMap
UnmodifiableShortLongMap. reject(ShortLongPredicate predicate)
ShortLongHashMap
ShortLongHashMap. select(ShortLongPredicate predicate)
MutableShortLongMap
SynchronizedShortLongMap. select(ShortLongPredicate predicate)
MutableShortLongMap
UnmodifiableShortLongMap. select(ShortLongPredicate predicate)
-