Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.FloatObjectPredicate
-
Packages that use FloatObjectPredicate 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. -
-
Uses of FloatObjectPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type FloatObjectPredicate Modifier and Type Method Description FloatObjectMap<V>FloatObjectMap. reject(FloatObjectPredicate<? super V> predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableFloatObjectMap<V>ImmutableFloatObjectMap. reject(FloatObjectPredicate<? super V> predicate)MutableFloatObjectMap<V>MutableFloatObjectMap. reject(FloatObjectPredicate<? super V> predicate)booleanMutableFloatObjectMap. removeIf(FloatObjectPredicate<? super V> predicate)Remove an entry from the map if thepredicateevaluates to true.FloatObjectMap<V>FloatObjectMap. select(FloatObjectPredicate<? super V> predicate)Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableFloatObjectMap<V>ImmutableFloatObjectMap. select(FloatObjectPredicate<? super V> predicate)MutableFloatObjectMap<V>MutableFloatObjectMap. select(FloatObjectPredicate<? super V> predicate)
-