Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.FloatPredicate
Packages that use FloatPredicate
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This 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 API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
-
Uses of FloatPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanFloatIterable.allSatisfy(FloatPredicate predicate) Returns true if all of the elements in the FloatIterable return true for the specified predicate, otherwise returns false.booleanFloatIterable.anySatisfy(FloatPredicate predicate) Returns true if any of the elements in the FloatIterable return true for the specified predicate, otherwise returns false.intFloatIterable.count(FloatPredicate predicate) Returns a count of the number of elements in the FloatIterable that return true for the specified predicate.floatFloatIterable.detectIfNone(FloatPredicate predicate, float ifNone) default booleanFloatIterable.noneSatisfy(FloatPredicate predicate) Returns true if none of the elements in the FloatIterable return true for the specified predicate, otherwise returns false.FloatIterable.reject(FloatPredicate predicate) Returns a new FloatIterable with all of the elements in the FloatIterable that return false for the specified predicate.default <R extends MutableFloatCollection>
RFloatIterable.reject(FloatPredicate predicate, R target) Same asFloatIterable.reject(FloatPredicate), only the results are added to the target MutableFloatCollection.LazyFloatIterable.reject(FloatPredicate predicate) FloatIterable.select(FloatPredicate predicate) Returns a new FloatIterable with all of the elements in the FloatIterable that return true for the specified predicate.default <R extends MutableFloatCollection>
RFloatIterable.select(FloatPredicate predicate, R target) Same asFloatIterable.select(FloatPredicate), only the results are added to the target MutableFloatCollection.LazyFloatIterable.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionFloatBag.reject(FloatPredicate predicate) ImmutableFloatBag.reject(FloatPredicate predicate) MutableFloatBag.reject(FloatPredicate predicate) FloatBag.select(FloatPredicate predicate) ImmutableFloatBag.select(FloatPredicate predicate) MutableFloatBag.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionImmutableFloatCollection.reject(FloatPredicate predicate) MutableFloatCollection.reject(FloatPredicate predicate) default booleanMutableFloatCollection.removeIf(FloatPredicate predicate) ImmutableFloatCollection.select(FloatPredicate predicate) MutableFloatCollection.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionFloatList.reject(FloatPredicate predicate) ImmutableFloatList.reject(FloatPredicate predicate) MutableFloatList.reject(FloatPredicate predicate) FloatList.select(FloatPredicate predicate) ImmutableFloatList.select(FloatPredicate predicate) MutableFloatList.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionFloatValuesMap.reject(FloatPredicate predicate) ImmutableByteFloatMap.reject(FloatPredicate predicate) ImmutableCharFloatMap.reject(FloatPredicate predicate) ImmutableDoubleFloatMap.reject(FloatPredicate predicate) ImmutableFloatFloatMap.reject(FloatPredicate predicate) ImmutableIntFloatMap.reject(FloatPredicate predicate) ImmutableLongFloatMap.reject(FloatPredicate predicate) ImmutableObjectFloatMap.reject(FloatPredicate predicate) ImmutableShortFloatMap.reject(FloatPredicate predicate) MutableFloatValuesMap.reject(FloatPredicate predicate) MutableObjectFloatMap.reject(FloatPredicate predicate) FloatValuesMap.select(FloatPredicate predicate) ImmutableByteFloatMap.select(FloatPredicate predicate) ImmutableCharFloatMap.select(FloatPredicate predicate) ImmutableDoubleFloatMap.select(FloatPredicate predicate) ImmutableFloatFloatMap.select(FloatPredicate predicate) ImmutableIntFloatMap.select(FloatPredicate predicate) ImmutableLongFloatMap.select(FloatPredicate predicate) ImmutableObjectFloatMap.select(FloatPredicate predicate) ImmutableShortFloatMap.select(FloatPredicate predicate) MutableFloatValuesMap.select(FloatPredicate predicate) MutableObjectFloatMap.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionOrderedFloatIterable.reject(FloatPredicate predicate) ReversibleFloatIterable.reject(FloatPredicate predicate) OrderedFloatIterable.select(FloatPredicate predicate) ReversibleFloatIterable.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionFloatSet.reject(FloatPredicate predicate) ImmutableFloatSet.reject(FloatPredicate predicate) MutableFloatSet.reject(FloatPredicate predicate) FloatSet.select(FloatPredicate predicate) ImmutableFloatSet.select(FloatPredicate predicate) MutableFloatSet.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionFloatStack.reject(FloatPredicate predicate) ImmutableFloatStack.reject(FloatPredicate predicate) MutableFloatStack.reject(FloatPredicate predicate) FloatStack.select(FloatPredicate predicate) ImmutableFloatStack.select(FloatPredicate predicate) MutableFloatStack.select(FloatPredicate predicate)