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.
This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of the mutable primitive bag interfaces.
This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.
This package contains implementations of primitive functions.
This package contains implementations of primitive procedures.
This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the mutable primitive stack interfaces.
-
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) -
Uses of FloatPredicate in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanImmutableFloatEmptyBag.allSatisfy(FloatPredicate predicate) booleanImmutableFloatHashBag.allSatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonBag.allSatisfy(FloatPredicate predicate) booleanImmutableFloatEmptyBag.anySatisfy(FloatPredicate predicate) booleanImmutableFloatHashBag.anySatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonBag.anySatisfy(FloatPredicate predicate) intImmutableFloatEmptyBag.count(FloatPredicate predicate) intImmutableFloatHashBag.count(FloatPredicate predicate) intImmutableFloatSingletonBag.count(FloatPredicate predicate) floatImmutableFloatEmptyBag.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableFloatHashBag.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableFloatSingletonBag.detectIfNone(FloatPredicate predicate, float ifNone) booleanImmutableFloatEmptyBag.noneSatisfy(FloatPredicate predicate) booleanImmutableFloatHashBag.noneSatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonBag.noneSatisfy(FloatPredicate predicate) ImmutableFloatEmptyBag.reject(FloatPredicate predicate) ImmutableFloatHashBag.reject(FloatPredicate predicate) ImmutableFloatSingletonBag.reject(FloatPredicate predicate) ImmutableFloatEmptyBag.select(FloatPredicate predicate) ImmutableFloatHashBag.select(FloatPredicate predicate) ImmutableFloatSingletonBag.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanFloatHashBag.allSatisfy(FloatPredicate predicate) booleanFloatHashBag.anySatisfy(FloatPredicate predicate) intFloatHashBag.count(FloatPredicate predicate) floatFloatHashBag.detectIfNone(FloatPredicate predicate, float ifNone) booleanFloatHashBag.noneSatisfy(FloatPredicate predicate) FloatHashBag.reject(FloatPredicate predicate) SynchronizedFloatBag.reject(FloatPredicate predicate) UnmodifiableFloatBag.reject(FloatPredicate predicate) booleanFloatHashBag.removeIf(FloatPredicate predicate) FloatHashBag.select(FloatPredicate predicate) SynchronizedFloatBag.select(FloatPredicate predicate) UnmodifiableFloatBag.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.block.factory.primitive
Classes in org.eclipse.collections.impl.block.factory.primitive that implement FloatPredicateModifier and TypeClassDescriptionprivate 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.primitive declared as FloatPredicateModifier and TypeFieldDescriptionprivate static final FloatPredicateFloatPredicates.ALWAYS_FALSEprivate static final FloatPredicateFloatPredicates.ALWAYS_TRUEprivate final FloatPredicateFloatPredicates.NotFloatPredicate.negateprivate final FloatPredicateFloatPredicates.AndFloatPredicate.oneprivate final FloatPredicateFloatPredicates.OrFloatPredicate.oneprivate final FloatPredicateFloatPredicates.AndFloatPredicate.twoprivate final FloatPredicateFloatPredicates.OrFloatPredicate.twoMethods in org.eclipse.collections.impl.block.factory.primitive that return FloatPredicateModifier and TypeMethodDescriptionstatic FloatPredicateFloatPredicates.alwaysFalse()static FloatPredicateFloatPredicates.alwaysTrue()static FloatPredicateFloatPredicates.and(FloatPredicate one, FloatPredicate two) static FloatPredicateFloatPredicates.equal(float expected) static FloatPredicateFloatPredicates.equal(float expected, float delta) static FloatPredicateFloatPredicates.greaterThan(float expected) static FloatPredicateFloatPredicates.lessThan(float expected) static FloatPredicateFloatPredicates.not(FloatPredicate negate) static FloatPredicateFloatPredicates.or(FloatPredicate one, FloatPredicate two) Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionstatic FloatPredicateFloatPredicates.and(FloatPredicate one, FloatPredicate two) static FloatPredicateFloatPredicates.not(FloatPredicate negate) static FloatPredicateFloatPredicates.or(FloatPredicate one, FloatPredicate two) Constructors in org.eclipse.collections.impl.block.factory.primitive with parameters of type FloatPredicateModifierConstructorDescriptionprivateAndFloatPredicate(FloatPredicate one, FloatPredicate two) privateNotFloatPredicate(FloatPredicate negate) privateOrFloatPredicate(FloatPredicate one, FloatPredicate two) -
Uses of FloatPredicate in org.eclipse.collections.impl.block.function.primitive
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type FloatPredicateModifier and TypeFieldDescriptionprivate final MutableList<Pair<FloatPredicate, FloatToObjectFunction<? extends V>>> FloatCaseFunction.predicateFunctionsMethods in org.eclipse.collections.impl.block.function.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionFloatCaseFunction.addCase(FloatPredicate predicate, FloatToObjectFunction<? extends V> function) -
Uses of FloatPredicate in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive with type parameters of type FloatPredicateModifier and TypeFieldDescriptionprivate final MutableList<Pair<FloatPredicate, FloatProcedure>> FloatCaseProcedure.predicateProceduresMethods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionFloatCaseProcedure.addCase(FloatPredicate predicate, FloatProcedure procedure) -
Uses of FloatPredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanAbstractSynchronizedFloatCollection.allSatisfy(FloatPredicate predicate) booleanAbstractUnmodifiableFloatCollection.allSatisfy(FloatPredicate predicate) booleanAbstractSynchronizedFloatCollection.anySatisfy(FloatPredicate predicate) booleanAbstractUnmodifiableFloatCollection.anySatisfy(FloatPredicate predicate) intAbstractSynchronizedFloatCollection.count(FloatPredicate predicate) intAbstractUnmodifiableFloatCollection.count(FloatPredicate predicate) floatAbstractSynchronizedFloatCollection.detectIfNone(FloatPredicate predicate, float ifNone) floatAbstractUnmodifiableFloatCollection.detectIfNone(FloatPredicate predicate, float ifNone) booleanAbstractSynchronizedFloatCollection.noneSatisfy(FloatPredicate predicate) booleanAbstractUnmodifiableFloatCollection.noneSatisfy(FloatPredicate predicate) AbstractSynchronizedFloatCollection.reject(FloatPredicate predicate) AbstractUnmodifiableFloatCollection.reject(FloatPredicate predicate) booleanAbstractSynchronizedFloatCollection.removeIf(FloatPredicate predicate) booleanAbstractUnmodifiableFloatCollection.removeIf(FloatPredicate predicate) AbstractSynchronizedFloatCollection.select(FloatPredicate predicate) AbstractUnmodifiableFloatCollection.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as FloatPredicateModifier and TypeFieldDescriptionprivate final FloatPredicateSelectFloatIterable.CountFloatProcedure.predicateprivate final FloatPredicateSelectFloatIterable.predicateprivate final FloatPredicateSelectFloatIterable.SelectFloatIterator.predicateMethods in org.eclipse.collections.impl.lazy.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanAbstractLazyFloatIterable.allSatisfy(FloatPredicate predicate) booleanCollectFloatIterable.allSatisfy(FloatPredicate predicate) booleanLazyFloatIterableAdapter.allSatisfy(FloatPredicate predicate) booleanSelectFloatIterable.allSatisfy(FloatPredicate predicate) booleanTapFloatIterable.allSatisfy(FloatPredicate predicate) booleanAbstractLazyFloatIterable.anySatisfy(FloatPredicate predicate) booleanCollectFloatIterable.anySatisfy(FloatPredicate predicate) booleanLazyFloatIterableAdapter.anySatisfy(FloatPredicate predicate) booleanSelectFloatIterable.anySatisfy(FloatPredicate predicate) booleanTapFloatIterable.anySatisfy(FloatPredicate predicate) intAbstractLazyFloatIterable.count(FloatPredicate predicate) intCollectFloatIterable.count(FloatPredicate predicate) intLazyFloatIterableAdapter.count(FloatPredicate predicate) intSelectFloatIterable.count(FloatPredicate predicate) floatAbstractLazyFloatIterable.detectIfNone(FloatPredicate predicate, float ifNone) floatLazyFloatIterableAdapter.detectIfNone(FloatPredicate predicate, float ifNone) floatTapFloatIterable.detectIfNone(FloatPredicate predicate, float ifNone) booleanAbstractLazyFloatIterable.noneSatisfy(FloatPredicate predicate) booleanLazyFloatIterableAdapter.noneSatisfy(FloatPredicate predicate) booleanTapFloatIterable.noneSatisfy(FloatPredicate predicate) AbstractLazyFloatIterable.reject(FloatPredicate predicate) AbstractLazyFloatIterable.select(FloatPredicate predicate) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type FloatPredicateModifierConstructorDescriptionprivateCountFloatProcedure(FloatPredicate predicate) SelectFloatIterable(FloatIterable delegate, FloatPredicate predicate) privateSelectFloatIterator(FloatIterable iterable, FloatPredicate predicate) privateSelectFloatIterator(FloatIterator iterator, FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanImmutableFloatArrayList.allSatisfy(FloatPredicate predicate) booleanImmutableFloatEmptyList.allSatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonList.allSatisfy(FloatPredicate predicate) booleanImmutableFloatArrayList.anySatisfy(FloatPredicate predicate) booleanImmutableFloatEmptyList.anySatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonList.anySatisfy(FloatPredicate predicate) intImmutableFloatArrayList.count(FloatPredicate predicate) intImmutableFloatEmptyList.count(FloatPredicate predicate) intImmutableFloatSingletonList.count(FloatPredicate predicate) floatImmutableFloatArrayList.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableFloatEmptyList.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableFloatSingletonList.detectIfNone(FloatPredicate predicate, float ifNone) booleanImmutableFloatEmptyList.noneSatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonList.noneSatisfy(FloatPredicate predicate) ImmutableFloatArrayList.reject(FloatPredicate predicate) <R extends MutableFloatCollection>
RImmutableFloatArrayList.reject(FloatPredicate predicate, R target) ImmutableFloatEmptyList.reject(FloatPredicate predicate) ImmutableFloatSingletonList.reject(FloatPredicate predicate) ImmutableFloatArrayList.select(FloatPredicate predicate) <R extends MutableFloatCollection>
RImmutableFloatArrayList.select(FloatPredicate predicate, R target) ImmutableFloatEmptyList.select(FloatPredicate predicate) ImmutableFloatSingletonList.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanFloatArrayList.allSatisfy(FloatPredicate predicate) booleanFloatArrayList.anySatisfy(FloatPredicate predicate) intFloatArrayList.count(FloatPredicate predicate) floatFloatArrayList.detectIfNone(FloatPredicate predicate, float ifNone) FloatArrayList.reject(FloatPredicate predicate) <R extends MutableFloatCollection>
RFloatArrayList.reject(FloatPredicate predicate, R target) SynchronizedFloatList.reject(FloatPredicate predicate) UnmodifiableFloatList.reject(FloatPredicate predicate) booleanFloatArrayList.removeIf(FloatPredicate predicate) FloatArrayList.select(FloatPredicate predicate) <R extends MutableFloatCollection>
RFloatArrayList.select(FloatPredicate predicate, R target) SynchronizedFloatList.select(FloatPredicate predicate) UnmodifiableFloatList.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanImmutableByteFloatEmptyMap.allSatisfy(FloatPredicate predicate) booleanImmutableByteFloatHashMap.allSatisfy(FloatPredicate predicate) booleanImmutableByteFloatSingletonMap.allSatisfy(FloatPredicate predicate) booleanImmutableCharFloatEmptyMap.allSatisfy(FloatPredicate predicate) booleanImmutableCharFloatHashMap.allSatisfy(FloatPredicate predicate) booleanImmutableCharFloatSingletonMap.allSatisfy(FloatPredicate predicate) booleanImmutableDoubleFloatEmptyMap.allSatisfy(FloatPredicate predicate) booleanImmutableDoubleFloatHashMap.allSatisfy(FloatPredicate predicate) booleanImmutableDoubleFloatSingletonMap.allSatisfy(FloatPredicate predicate) booleanImmutableFloatFloatEmptyMap.allSatisfy(FloatPredicate predicate) booleanImmutableFloatFloatHashMap.allSatisfy(FloatPredicate predicate) booleanImmutableFloatFloatSingletonMap.allSatisfy(FloatPredicate predicate) booleanImmutableIntFloatEmptyMap.allSatisfy(FloatPredicate predicate) booleanImmutableIntFloatHashMap.allSatisfy(FloatPredicate predicate) booleanImmutableIntFloatSingletonMap.allSatisfy(FloatPredicate predicate) booleanImmutableLongFloatEmptyMap.allSatisfy(FloatPredicate predicate) booleanImmutableLongFloatHashMap.allSatisfy(FloatPredicate predicate) booleanImmutableLongFloatSingletonMap.allSatisfy(FloatPredicate predicate) booleanImmutableObjectFloatEmptyMap.allSatisfy(FloatPredicate predicate) booleanImmutableObjectFloatHashMap.allSatisfy(FloatPredicate predicate) booleanImmutableObjectFloatSingletonMap.allSatisfy(FloatPredicate predicate) booleanImmutableShortFloatEmptyMap.allSatisfy(FloatPredicate predicate) booleanImmutableShortFloatHashMap.allSatisfy(FloatPredicate predicate) booleanImmutableShortFloatSingletonMap.allSatisfy(FloatPredicate predicate) booleanImmutableByteFloatEmptyMap.anySatisfy(FloatPredicate predicate) booleanImmutableByteFloatHashMap.anySatisfy(FloatPredicate predicate) booleanImmutableByteFloatSingletonMap.anySatisfy(FloatPredicate predicate) booleanImmutableCharFloatEmptyMap.anySatisfy(FloatPredicate predicate) booleanImmutableCharFloatHashMap.anySatisfy(FloatPredicate predicate) booleanImmutableCharFloatSingletonMap.anySatisfy(FloatPredicate predicate) booleanImmutableDoubleFloatEmptyMap.anySatisfy(FloatPredicate predicate) booleanImmutableDoubleFloatHashMap.anySatisfy(FloatPredicate predicate) booleanImmutableDoubleFloatSingletonMap.anySatisfy(FloatPredicate predicate) booleanImmutableFloatFloatEmptyMap.anySatisfy(FloatPredicate predicate) booleanImmutableFloatFloatHashMap.anySatisfy(FloatPredicate predicate) booleanImmutableFloatFloatSingletonMap.anySatisfy(FloatPredicate predicate) booleanImmutableIntFloatEmptyMap.anySatisfy(FloatPredicate predicate) booleanImmutableIntFloatHashMap.anySatisfy(FloatPredicate predicate) booleanImmutableIntFloatSingletonMap.anySatisfy(FloatPredicate predicate) booleanImmutableLongFloatEmptyMap.anySatisfy(FloatPredicate predicate) booleanImmutableLongFloatHashMap.anySatisfy(FloatPredicate predicate) booleanImmutableLongFloatSingletonMap.anySatisfy(FloatPredicate predicate) booleanImmutableObjectFloatEmptyMap.anySatisfy(FloatPredicate predicate) booleanImmutableObjectFloatHashMap.anySatisfy(FloatPredicate predicate) booleanImmutableObjectFloatSingletonMap.anySatisfy(FloatPredicate predicate) booleanImmutableShortFloatEmptyMap.anySatisfy(FloatPredicate predicate) booleanImmutableShortFloatHashMap.anySatisfy(FloatPredicate predicate) booleanImmutableShortFloatSingletonMap.anySatisfy(FloatPredicate predicate) intImmutableByteFloatEmptyMap.count(FloatPredicate predicate) intImmutableByteFloatHashMap.count(FloatPredicate predicate) intImmutableByteFloatSingletonMap.count(FloatPredicate predicate) intImmutableCharFloatEmptyMap.count(FloatPredicate predicate) intImmutableCharFloatHashMap.count(FloatPredicate predicate) intImmutableCharFloatSingletonMap.count(FloatPredicate predicate) intImmutableDoubleFloatEmptyMap.count(FloatPredicate predicate) intImmutableDoubleFloatHashMap.count(FloatPredicate predicate) intImmutableDoubleFloatSingletonMap.count(FloatPredicate predicate) intImmutableFloatFloatEmptyMap.count(FloatPredicate predicate) intImmutableFloatFloatHashMap.count(FloatPredicate predicate) intImmutableFloatFloatSingletonMap.count(FloatPredicate predicate) intImmutableIntFloatEmptyMap.count(FloatPredicate predicate) intImmutableIntFloatHashMap.count(FloatPredicate predicate) intImmutableIntFloatSingletonMap.count(FloatPredicate predicate) intImmutableLongFloatEmptyMap.count(FloatPredicate predicate) intImmutableLongFloatHashMap.count(FloatPredicate predicate) intImmutableLongFloatSingletonMap.count(FloatPredicate predicate) intImmutableObjectFloatEmptyMap.count(FloatPredicate predicate) intImmutableObjectFloatHashMap.count(FloatPredicate predicate) intImmutableObjectFloatSingletonMap.count(FloatPredicate predicate) intImmutableShortFloatEmptyMap.count(FloatPredicate predicate) intImmutableShortFloatHashMap.count(FloatPredicate predicate) intImmutableShortFloatSingletonMap.count(FloatPredicate predicate) floatImmutableByteFloatEmptyMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableByteFloatHashMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableByteFloatSingletonMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableCharFloatEmptyMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableCharFloatHashMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableCharFloatSingletonMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableDoubleFloatEmptyMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableDoubleFloatHashMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableDoubleFloatSingletonMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableFloatFloatEmptyMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableFloatFloatHashMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableFloatFloatSingletonMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableIntFloatEmptyMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableIntFloatHashMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableIntFloatSingletonMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableLongFloatEmptyMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableLongFloatHashMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableLongFloatSingletonMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableObjectFloatEmptyMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableObjectFloatHashMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableObjectFloatSingletonMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableShortFloatEmptyMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableShortFloatHashMap.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableShortFloatSingletonMap.detectIfNone(FloatPredicate predicate, float ifNone) booleanImmutableByteFloatEmptyMap.noneSatisfy(FloatPredicate predicate) booleanImmutableByteFloatHashMap.noneSatisfy(FloatPredicate predicate) booleanImmutableByteFloatSingletonMap.noneSatisfy(FloatPredicate predicate) booleanImmutableCharFloatEmptyMap.noneSatisfy(FloatPredicate predicate) booleanImmutableCharFloatHashMap.noneSatisfy(FloatPredicate predicate) booleanImmutableCharFloatSingletonMap.noneSatisfy(FloatPredicate predicate) booleanImmutableDoubleFloatEmptyMap.noneSatisfy(FloatPredicate predicate) booleanImmutableDoubleFloatHashMap.noneSatisfy(FloatPredicate predicate) booleanImmutableDoubleFloatSingletonMap.noneSatisfy(FloatPredicate predicate) booleanImmutableFloatFloatEmptyMap.noneSatisfy(FloatPredicate predicate) booleanImmutableFloatFloatHashMap.noneSatisfy(FloatPredicate predicate) booleanImmutableFloatFloatSingletonMap.noneSatisfy(FloatPredicate predicate) booleanImmutableIntFloatEmptyMap.noneSatisfy(FloatPredicate predicate) booleanImmutableIntFloatHashMap.noneSatisfy(FloatPredicate predicate) booleanImmutableIntFloatSingletonMap.noneSatisfy(FloatPredicate predicate) booleanImmutableLongFloatEmptyMap.noneSatisfy(FloatPredicate predicate) booleanImmutableLongFloatHashMap.noneSatisfy(FloatPredicate predicate) booleanImmutableLongFloatSingletonMap.noneSatisfy(FloatPredicate predicate) booleanImmutableObjectFloatEmptyMap.noneSatisfy(FloatPredicate predicate) booleanImmutableObjectFloatHashMap.noneSatisfy(FloatPredicate predicate) booleanImmutableObjectFloatSingletonMap.noneSatisfy(FloatPredicate predicate) booleanImmutableShortFloatEmptyMap.noneSatisfy(FloatPredicate predicate) booleanImmutableShortFloatHashMap.noneSatisfy(FloatPredicate predicate) booleanImmutableShortFloatSingletonMap.noneSatisfy(FloatPredicate predicate) ImmutableByteFloatEmptyMap.reject(FloatPredicate predicate) ImmutableByteFloatHashMap.reject(FloatPredicate predicate) ImmutableByteFloatSingletonMap.reject(FloatPredicate predicate) ImmutableCharFloatEmptyMap.reject(FloatPredicate predicate) ImmutableCharFloatHashMap.reject(FloatPredicate predicate) ImmutableCharFloatSingletonMap.reject(FloatPredicate predicate) ImmutableDoubleFloatEmptyMap.reject(FloatPredicate predicate) ImmutableDoubleFloatHashMap.reject(FloatPredicate predicate) ImmutableDoubleFloatSingletonMap.reject(FloatPredicate predicate) ImmutableFloatFloatEmptyMap.reject(FloatPredicate predicate) ImmutableFloatFloatHashMap.reject(FloatPredicate predicate) ImmutableFloatFloatSingletonMap.reject(FloatPredicate predicate) ImmutableIntFloatEmptyMap.reject(FloatPredicate predicate) ImmutableIntFloatHashMap.reject(FloatPredicate predicate) ImmutableIntFloatSingletonMap.reject(FloatPredicate predicate) ImmutableLongFloatEmptyMap.reject(FloatPredicate predicate) ImmutableLongFloatHashMap.reject(FloatPredicate predicate) ImmutableLongFloatSingletonMap.reject(FloatPredicate predicate) ImmutableObjectFloatEmptyMap.reject(FloatPredicate predicate) ImmutableObjectFloatHashMap.reject(FloatPredicate predicate) ImmutableObjectFloatSingletonMap.reject(FloatPredicate predicate) ImmutableShortFloatEmptyMap.reject(FloatPredicate predicate) ImmutableShortFloatHashMap.reject(FloatPredicate predicate) ImmutableShortFloatSingletonMap.reject(FloatPredicate predicate) ImmutableByteFloatEmptyMap.select(FloatPredicate predicate) ImmutableByteFloatHashMap.select(FloatPredicate predicate) ImmutableByteFloatSingletonMap.select(FloatPredicate predicate) ImmutableCharFloatEmptyMap.select(FloatPredicate predicate) ImmutableCharFloatHashMap.select(FloatPredicate predicate) ImmutableCharFloatSingletonMap.select(FloatPredicate predicate) ImmutableDoubleFloatEmptyMap.select(FloatPredicate predicate) ImmutableDoubleFloatHashMap.select(FloatPredicate predicate) ImmutableDoubleFloatSingletonMap.select(FloatPredicate predicate) ImmutableFloatFloatEmptyMap.select(FloatPredicate predicate) ImmutableFloatFloatHashMap.select(FloatPredicate predicate) ImmutableFloatFloatSingletonMap.select(FloatPredicate predicate) ImmutableIntFloatEmptyMap.select(FloatPredicate predicate) ImmutableIntFloatHashMap.select(FloatPredicate predicate) ImmutableIntFloatSingletonMap.select(FloatPredicate predicate) ImmutableLongFloatEmptyMap.select(FloatPredicate predicate) ImmutableLongFloatHashMap.select(FloatPredicate predicate) ImmutableLongFloatSingletonMap.select(FloatPredicate predicate) ImmutableObjectFloatEmptyMap.select(FloatPredicate predicate) ImmutableObjectFloatHashMap.select(FloatPredicate predicate) ImmutableObjectFloatSingletonMap.select(FloatPredicate predicate) ImmutableShortFloatEmptyMap.select(FloatPredicate predicate) ImmutableShortFloatHashMap.select(FloatPredicate predicate) ImmutableShortFloatSingletonMap.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanAbstractMutableFloatKeySet.allSatisfy(FloatPredicate predicate) booleanAbstractMutableFloatValuesMap.AbstractFloatValuesCollection.allSatisfy(FloatPredicate predicate) booleanAbstractMutableFloatValuesMap.allSatisfy(FloatPredicate predicate) booleanFloatBooleanHashMap.KeysView.allSatisfy(FloatPredicate predicate) booleanImmutableFloatFloatMapKeySet.allSatisfy(FloatPredicate predicate) booleanImmutableFloatMapKeySet.allSatisfy(FloatPredicate predicate) booleanObjectFloatHashMap.allSatisfy(FloatPredicate predicate) booleanObjectFloatHashMap.ValuesCollection.allSatisfy(FloatPredicate predicate) booleanObjectFloatHashMapWithHashingStrategy.allSatisfy(FloatPredicate predicate) booleanObjectFloatHashMapWithHashingStrategy.ValuesCollection.allSatisfy(FloatPredicate predicate) booleanSynchronizedByteFloatMap.allSatisfy(FloatPredicate predicate) booleanSynchronizedCharFloatMap.allSatisfy(FloatPredicate predicate) booleanSynchronizedDoubleFloatMap.allSatisfy(FloatPredicate predicate) booleanSynchronizedFloatFloatMap.allSatisfy(FloatPredicate predicate) booleanSynchronizedIntFloatMap.allSatisfy(FloatPredicate predicate) booleanSynchronizedLongFloatMap.allSatisfy(FloatPredicate predicate) booleanSynchronizedObjectFloatMap.allSatisfy(FloatPredicate predicate) booleanSynchronizedShortFloatMap.allSatisfy(FloatPredicate predicate) booleanUnmodifiableByteFloatMap.allSatisfy(FloatPredicate predicate) booleanUnmodifiableCharFloatMap.allSatisfy(FloatPredicate predicate) booleanUnmodifiableDoubleFloatMap.allSatisfy(FloatPredicate predicate) booleanUnmodifiableFloatFloatMap.allSatisfy(FloatPredicate predicate) booleanUnmodifiableIntFloatMap.allSatisfy(FloatPredicate predicate) booleanUnmodifiableLongFloatMap.allSatisfy(FloatPredicate predicate) booleanUnmodifiableObjectFloatMap.allSatisfy(FloatPredicate predicate) booleanUnmodifiableShortFloatMap.allSatisfy(FloatPredicate predicate) booleanAbstractMutableFloatKeySet.anySatisfy(FloatPredicate predicate) booleanAbstractMutableFloatValuesMap.AbstractFloatValuesCollection.anySatisfy(FloatPredicate predicate) booleanAbstractMutableFloatValuesMap.anySatisfy(FloatPredicate predicate) booleanFloatBooleanHashMap.KeysView.anySatisfy(FloatPredicate predicate) booleanImmutableFloatFloatMapKeySet.anySatisfy(FloatPredicate predicate) booleanImmutableFloatMapKeySet.anySatisfy(FloatPredicate predicate) booleanObjectFloatHashMap.anySatisfy(FloatPredicate predicate) booleanObjectFloatHashMap.ValuesCollection.anySatisfy(FloatPredicate predicate) booleanObjectFloatHashMapWithHashingStrategy.anySatisfy(FloatPredicate predicate) booleanObjectFloatHashMapWithHashingStrategy.ValuesCollection.anySatisfy(FloatPredicate predicate) booleanSynchronizedByteFloatMap.anySatisfy(FloatPredicate predicate) booleanSynchronizedCharFloatMap.anySatisfy(FloatPredicate predicate) booleanSynchronizedDoubleFloatMap.anySatisfy(FloatPredicate predicate) booleanSynchronizedFloatFloatMap.anySatisfy(FloatPredicate predicate) booleanSynchronizedIntFloatMap.anySatisfy(FloatPredicate predicate) booleanSynchronizedLongFloatMap.anySatisfy(FloatPredicate predicate) booleanSynchronizedObjectFloatMap.anySatisfy(FloatPredicate predicate) booleanSynchronizedShortFloatMap.anySatisfy(FloatPredicate predicate) booleanUnmodifiableByteFloatMap.anySatisfy(FloatPredicate predicate) booleanUnmodifiableCharFloatMap.anySatisfy(FloatPredicate predicate) booleanUnmodifiableDoubleFloatMap.anySatisfy(FloatPredicate predicate) booleanUnmodifiableFloatFloatMap.anySatisfy(FloatPredicate predicate) booleanUnmodifiableIntFloatMap.anySatisfy(FloatPredicate predicate) booleanUnmodifiableLongFloatMap.anySatisfy(FloatPredicate predicate) booleanUnmodifiableObjectFloatMap.anySatisfy(FloatPredicate predicate) booleanUnmodifiableShortFloatMap.anySatisfy(FloatPredicate predicate) intAbstractMutableFloatKeySet.count(FloatPredicate predicate) intAbstractMutableFloatValuesMap.AbstractFloatValuesCollection.count(FloatPredicate predicate) intAbstractMutableFloatValuesMap.count(FloatPredicate predicate) intFloatBooleanHashMap.KeysView.count(FloatPredicate predicate) intImmutableFloatFloatMapKeySet.count(FloatPredicate predicate) intImmutableFloatMapKeySet.count(FloatPredicate predicate) intObjectFloatHashMap.count(FloatPredicate predicate) intObjectFloatHashMap.ValuesCollection.count(FloatPredicate predicate) intObjectFloatHashMapWithHashingStrategy.count(FloatPredicate predicate) intObjectFloatHashMapWithHashingStrategy.ValuesCollection.count(FloatPredicate predicate) intSynchronizedByteFloatMap.count(FloatPredicate predicate) intSynchronizedCharFloatMap.count(FloatPredicate predicate) intSynchronizedDoubleFloatMap.count(FloatPredicate predicate) intSynchronizedFloatFloatMap.count(FloatPredicate predicate) intSynchronizedIntFloatMap.count(FloatPredicate predicate) intSynchronizedLongFloatMap.count(FloatPredicate predicate) intSynchronizedObjectFloatMap.count(FloatPredicate predicate) intSynchronizedShortFloatMap.count(FloatPredicate predicate) intUnmodifiableByteFloatMap.count(FloatPredicate predicate) intUnmodifiableCharFloatMap.count(FloatPredicate predicate) intUnmodifiableDoubleFloatMap.count(FloatPredicate predicate) intUnmodifiableFloatFloatMap.count(FloatPredicate predicate) intUnmodifiableIntFloatMap.count(FloatPredicate predicate) intUnmodifiableLongFloatMap.count(FloatPredicate predicate) intUnmodifiableObjectFloatMap.count(FloatPredicate predicate) intUnmodifiableShortFloatMap.count(FloatPredicate predicate) floatAbstractMutableFloatKeySet.detectIfNone(FloatPredicate predicate, float ifNone) floatAbstractMutableFloatValuesMap.AbstractFloatValuesCollection.detectIfNone(FloatPredicate predicate, float ifNone) floatAbstractMutableFloatValuesMap.detectIfNone(FloatPredicate predicate, float value) floatFloatBooleanHashMap.KeysView.detectIfNone(FloatPredicate predicate, float value) floatImmutableFloatFloatMapKeySet.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableFloatMapKeySet.detectIfNone(FloatPredicate predicate, float ifNone) floatObjectFloatHashMap.detectIfNone(FloatPredicate predicate, float ifNone) floatObjectFloatHashMap.ValuesCollection.detectIfNone(FloatPredicate predicate, float ifNone) floatObjectFloatHashMapWithHashingStrategy.detectIfNone(FloatPredicate predicate, float ifNone) floatObjectFloatHashMapWithHashingStrategy.ValuesCollection.detectIfNone(FloatPredicate predicate, float ifNone) floatSynchronizedByteFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatSynchronizedCharFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatSynchronizedDoubleFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatSynchronizedFloatFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatSynchronizedIntFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatSynchronizedLongFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatSynchronizedObjectFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatSynchronizedShortFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatUnmodifiableByteFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatUnmodifiableCharFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatUnmodifiableDoubleFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatUnmodifiableFloatFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatUnmodifiableIntFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatUnmodifiableLongFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatUnmodifiableObjectFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) floatUnmodifiableShortFloatMap.detectIfNone(FloatPredicate predicate, float ifNone) booleanAbstractMutableFloatValuesMap.AbstractFloatValuesCollection.noneSatisfy(FloatPredicate predicate) booleanImmutableFloatFloatMapKeySet.noneSatisfy(FloatPredicate predicate) booleanImmutableFloatMapKeySet.noneSatisfy(FloatPredicate predicate) booleanObjectFloatHashMap.noneSatisfy(FloatPredicate predicate) booleanObjectFloatHashMap.ValuesCollection.noneSatisfy(FloatPredicate predicate) booleanObjectFloatHashMapWithHashingStrategy.noneSatisfy(FloatPredicate predicate) booleanObjectFloatHashMapWithHashingStrategy.ValuesCollection.noneSatisfy(FloatPredicate predicate) booleanSynchronizedByteFloatMap.noneSatisfy(FloatPredicate predicate) booleanSynchronizedCharFloatMap.noneSatisfy(FloatPredicate predicate) booleanSynchronizedDoubleFloatMap.noneSatisfy(FloatPredicate predicate) booleanSynchronizedFloatFloatMap.noneSatisfy(FloatPredicate predicate) booleanSynchronizedIntFloatMap.noneSatisfy(FloatPredicate predicate) booleanSynchronizedLongFloatMap.noneSatisfy(FloatPredicate predicate) booleanSynchronizedObjectFloatMap.noneSatisfy(FloatPredicate predicate) booleanSynchronizedShortFloatMap.noneSatisfy(FloatPredicate predicate) booleanUnmodifiableByteFloatMap.noneSatisfy(FloatPredicate predicate) booleanUnmodifiableCharFloatMap.noneSatisfy(FloatPredicate predicate) booleanUnmodifiableDoubleFloatMap.noneSatisfy(FloatPredicate predicate) booleanUnmodifiableFloatFloatMap.noneSatisfy(FloatPredicate predicate) booleanUnmodifiableIntFloatMap.noneSatisfy(FloatPredicate predicate) booleanUnmodifiableLongFloatMap.noneSatisfy(FloatPredicate predicate) booleanUnmodifiableObjectFloatMap.noneSatisfy(FloatPredicate predicate) booleanUnmodifiableShortFloatMap.noneSatisfy(FloatPredicate predicate) AbstractMutableFloatKeySet.reject(FloatPredicate predicate) AbstractMutableFloatValuesMap.AbstractFloatValuesCollection.reject(FloatPredicate predicate) AbstractMutableFloatValuesMap.reject(FloatPredicate predicate) ImmutableFloatFloatMapKeySet.reject(FloatPredicate predicate) ImmutableFloatMapKeySet.reject(FloatPredicate predicate) ObjectFloatHashMap.reject(FloatPredicate predicate) ObjectFloatHashMap.ValuesCollection.reject(FloatPredicate predicate) ObjectFloatHashMapWithHashingStrategy.reject(FloatPredicate predicate) ObjectFloatHashMapWithHashingStrategy.ValuesCollection.reject(FloatPredicate predicate) SynchronizedByteFloatMap.reject(FloatPredicate predicate) SynchronizedCharFloatMap.reject(FloatPredicate predicate) SynchronizedDoubleFloatMap.reject(FloatPredicate predicate) SynchronizedFloatFloatMap.reject(FloatPredicate predicate) SynchronizedIntFloatMap.reject(FloatPredicate predicate) SynchronizedLongFloatMap.reject(FloatPredicate predicate) SynchronizedObjectFloatMap.reject(FloatPredicate predicate) SynchronizedShortFloatMap.reject(FloatPredicate predicate) UnmodifiableByteFloatMap.reject(FloatPredicate predicate) UnmodifiableCharFloatMap.reject(FloatPredicate predicate) UnmodifiableDoubleFloatMap.reject(FloatPredicate predicate) UnmodifiableFloatFloatMap.reject(FloatPredicate predicate) UnmodifiableIntFloatMap.reject(FloatPredicate predicate) UnmodifiableLongFloatMap.reject(FloatPredicate predicate) UnmodifiableObjectFloatMap.reject(FloatPredicate predicate) UnmodifiableShortFloatMap.reject(FloatPredicate predicate) AbstractMutableFloatKeySet.select(FloatPredicate predicate) AbstractMutableFloatValuesMap.AbstractFloatValuesCollection.select(FloatPredicate predicate) AbstractMutableFloatValuesMap.select(FloatPredicate predicate) ImmutableFloatFloatMapKeySet.select(FloatPredicate predicate) ImmutableFloatMapKeySet.select(FloatPredicate predicate) ObjectFloatHashMap.select(FloatPredicate predicate) ObjectFloatHashMap.ValuesCollection.select(FloatPredicate predicate) ObjectFloatHashMapWithHashingStrategy.select(FloatPredicate predicate) ObjectFloatHashMapWithHashingStrategy.ValuesCollection.select(FloatPredicate predicate) SynchronizedByteFloatMap.select(FloatPredicate predicate) SynchronizedCharFloatMap.select(FloatPredicate predicate) SynchronizedDoubleFloatMap.select(FloatPredicate predicate) SynchronizedFloatFloatMap.select(FloatPredicate predicate) SynchronizedIntFloatMap.select(FloatPredicate predicate) SynchronizedLongFloatMap.select(FloatPredicate predicate) SynchronizedObjectFloatMap.select(FloatPredicate predicate) SynchronizedShortFloatMap.select(FloatPredicate predicate) UnmodifiableByteFloatMap.select(FloatPredicate predicate) UnmodifiableCharFloatMap.select(FloatPredicate predicate) UnmodifiableDoubleFloatMap.select(FloatPredicate predicate) UnmodifiableFloatFloatMap.select(FloatPredicate predicate) UnmodifiableIntFloatMap.select(FloatPredicate predicate) UnmodifiableLongFloatMap.select(FloatPredicate predicate) UnmodifiableObjectFloatMap.select(FloatPredicate predicate) UnmodifiableShortFloatMap.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanSynchronizedFloatIterable.allSatisfy(FloatPredicate predicate) booleanSynchronizedFloatIterable.anySatisfy(FloatPredicate predicate) intSynchronizedFloatIterable.count(FloatPredicate predicate) floatSynchronizedFloatIterable.detectIfNone(FloatPredicate predicate, float ifNone) booleanSynchronizedFloatIterable.noneSatisfy(FloatPredicate predicate) SynchronizedFloatIterable.reject(FloatPredicate predicate) SynchronizedFloatIterable.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanImmutableFloatEmptySet.allSatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonSet.allSatisfy(FloatPredicate predicate) booleanImmutableFloatEmptySet.anySatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonSet.anySatisfy(FloatPredicate predicate) intImmutableFloatEmptySet.count(FloatPredicate predicate) intImmutableFloatSingletonSet.count(FloatPredicate predicate) floatImmutableFloatEmptySet.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableFloatSingletonSet.detectIfNone(FloatPredicate predicate, float ifNone) booleanImmutableFloatEmptySet.noneSatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonSet.noneSatisfy(FloatPredicate predicate) ImmutableFloatEmptySet.reject(FloatPredicate predicate) ImmutableFloatSingletonSet.reject(FloatPredicate predicate) ImmutableFloatEmptySet.select(FloatPredicate predicate) ImmutableFloatSingletonSet.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanFloatHashSet.allSatisfy(FloatPredicate predicate) booleanFloatHashSet.ImmutableFloatHashSet.allSatisfy(FloatPredicate predicate) booleanFloatHashSet.anySatisfy(FloatPredicate predicate) booleanFloatHashSet.ImmutableFloatHashSet.anySatisfy(FloatPredicate predicate) intFloatHashSet.count(FloatPredicate predicate) intFloatHashSet.ImmutableFloatHashSet.count(FloatPredicate predicate) floatFloatHashSet.detectIfNone(FloatPredicate predicate, float ifNone) floatFloatHashSet.ImmutableFloatHashSet.detectIfNone(FloatPredicate predicate, float ifNone) booleanFloatHashSet.ImmutableFloatHashSet.noneSatisfy(FloatPredicate predicate) FloatHashSet.ImmutableFloatHashSet.reject(FloatPredicate predicate) FloatHashSet.reject(FloatPredicate predicate) <R extends MutableFloatCollection>
RFloatHashSet.reject(FloatPredicate predicate, R target) SynchronizedFloatSet.reject(FloatPredicate predicate) UnmodifiableFloatSet.reject(FloatPredicate predicate) FloatHashSet.ImmutableFloatHashSet.select(FloatPredicate predicate) FloatHashSet.select(FloatPredicate predicate) <R extends MutableFloatCollection>
RFloatHashSet.select(FloatPredicate predicate, R target) SynchronizedFloatSet.select(FloatPredicate predicate) UnmodifiableFloatSet.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanImmutableFloatEmptyStack.allSatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonStack.allSatisfy(FloatPredicate predicate) booleanImmutableFloatEmptyStack.anySatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonStack.anySatisfy(FloatPredicate predicate) intImmutableFloatEmptyStack.count(FloatPredicate predicate) intImmutableFloatSingletonStack.count(FloatPredicate predicate) floatImmutableFloatEmptyStack.detectIfNone(FloatPredicate predicate, float ifNone) floatImmutableFloatSingletonStack.detectIfNone(FloatPredicate predicate, float ifNone) booleanImmutableFloatEmptyStack.noneSatisfy(FloatPredicate predicate) booleanImmutableFloatSingletonStack.noneSatisfy(FloatPredicate predicate) ImmutableFloatArrayStack.reject(FloatPredicate predicate) ImmutableFloatEmptyStack.reject(FloatPredicate predicate) ImmutableFloatSingletonStack.reject(FloatPredicate predicate) ImmutableFloatArrayStack.select(FloatPredicate predicate) ImmutableFloatEmptyStack.select(FloatPredicate predicate) ImmutableFloatSingletonStack.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanSynchronizedFloatStack.allSatisfy(FloatPredicate predicate) booleanUnmodifiableFloatStack.allSatisfy(FloatPredicate predicate) booleanSynchronizedFloatStack.anySatisfy(FloatPredicate predicate) booleanUnmodifiableFloatStack.anySatisfy(FloatPredicate predicate) intSynchronizedFloatStack.count(FloatPredicate predicate) intUnmodifiableFloatStack.count(FloatPredicate predicate) floatSynchronizedFloatStack.detectIfNone(FloatPredicate predicate, float ifNone) floatUnmodifiableFloatStack.detectIfNone(FloatPredicate predicate, float ifNone) booleanSynchronizedFloatStack.noneSatisfy(FloatPredicate predicate) booleanUnmodifiableFloatStack.noneSatisfy(FloatPredicate predicate) FloatArrayStack.reject(FloatPredicate predicate) SynchronizedFloatStack.reject(FloatPredicate predicate) UnmodifiableFloatStack.reject(FloatPredicate predicate) FloatArrayStack.select(FloatPredicate predicate) SynchronizedFloatStack.select(FloatPredicate predicate) UnmodifiableFloatStack.select(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionbooleanAbstractFloatStack.allSatisfy(FloatPredicate predicate) booleanAbstractFloatStack.anySatisfy(FloatPredicate predicate) intAbstractFloatStack.count(FloatPredicate predicate) floatAbstractFloatStack.detectIfNone(FloatPredicate predicate, float ifNone) booleanAbstractFloatStack.noneSatisfy(FloatPredicate predicate) -
Uses of FloatPredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionstatic booleanFloatIterableIterate.allSatisfy(FloatIterable iterable, FloatPredicate predicate) static booleanFloatIteratorIterate.allSatisfy(FloatIterator iterator, FloatPredicate predicate) static booleanFloatIterableIterate.anySatisfy(FloatIterable iterable, FloatPredicate predicate) static booleanFloatIteratorIterate.anySatisfy(FloatIterator iterator, FloatPredicate predicate) static intFloatIterableIterate.count(FloatIterable iterable, FloatPredicate predicate) static intFloatIteratorIterate.count(FloatIterator iterator, FloatPredicate predicate) static floatFloatIterableIterate.detectIfNone(FloatIterable iterable, FloatPredicate predicate, float ifNone) static floatFloatIteratorIterate.detectIfNone(FloatIterator iterator, FloatPredicate predicate, float ifNone) static booleanFloatIterableIterate.noneSatisfy(FloatIterable iterable, FloatPredicate predicate) static booleanFloatIteratorIterate.noneSatisfy(FloatIterator iterator, FloatPredicate predicate) static <R extends MutableFloatCollection>
RFloatIterableIterate.reject(FloatIterable iterable, FloatPredicate predicate, R targetCollection) static <R extends MutableFloatCollection>
RFloatIteratorIterate.reject(FloatIterator iterator, FloatPredicate predicate, R targetCollection) static <R extends MutableFloatCollection>
RFloatIterableIterate.select(FloatIterable iterable, FloatPredicate predicate, R targetCollection) static <R extends MutableFloatCollection>
RFloatIteratorIterate.select(FloatIterator iterator, FloatPredicate predicate, R targetCollection) -
Uses of FloatPredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type FloatPredicateModifier and TypeMethodDescriptionstatic <V> LazyIterable<V> LazyFloatIterate.collectIf(FloatIterable iterable, FloatPredicate predicate, FloatToObjectFunction<? extends V> function) Creates a deferred filtering and transforming float iterable for the specified float iterable.static LazyFloatIterableLazyFloatIterate.select(FloatIterable iterable, FloatPredicate predicate) Creates a deferred filtering float iterable for the specified float iterable.