Package it.unimi.dsi.fastutil.floats
Interface FloatPredicate
- All Superinterfaces:
DoublePredicate,Predicate<Float>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface FloatPredicate extends Predicate<Float>, DoublePredicate
A type-specific
Predicate; provides methods to test a primitive type
both as object and as primitive.
Except for the boolean case, this interface extends both a parameterized
Predicate and a type-specific JDK predicate (e.g.,
IntPredicate). For types missing a type-specific
JDK predicate (e.g., short or float), we extend the predicate
associated with the smallest primitive type that can represent the current
type (e.g., int or double, respectively).
- Since:
- 8.5.0
- See Also:
Predicate
-
Method Summary
Modifier and Type Method Description default FloatPredicateand(FloatPredicate other)Returns a composed type-specific predicate that represents a short-circuiting logical AND of this type-specific predicate and another.default FloatPredicateand(DoublePredicate other)default Predicate<Float>and(Predicate<? super Float> other)Deprecated.Please use the corresponding type-specific method instead.default FloatPredicatenegate()default FloatPredicateor(FloatPredicate other)Returns a composed type-specific predicate that represents a short-circuiting logical OR of this type-specific predicate and another.default FloatPredicateor(DoublePredicate other)default Predicate<Float>or(Predicate<? super Float> other)Deprecated.Please use the corresponding type-specific method instead.default booleantest(double t)Deprecated.Please use the corresponding type-specific method instead.booleantest(float t)Evaluates this predicate on the given input.default booleantest(Float t)Deprecated.Please use the corresponding type-specific method instead.
-
Method Details
-
test
boolean test(float t)Evaluates this predicate on the given input.- Parameters:
t- the input.- Returns:
trueif the input matches the predicate, otherwisefalse
-
test
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
testin interfaceDoublePredicate
-
test
Deprecated.Please use the corresponding type-specific method instead. -
and
Returns a composed type-specific predicate that represents a short-circuiting logical AND of this type-specific predicate and another.- Parameters:
other- a predicate that will be logically-ANDed with this predicate.- Returns:
- a composed predicate that represents the short-circuiting logical AND
of this predicate and the
otherpredicate. - See Also:
Predicate.and(java.util.function.Predicate<? super T>)- API Notes:
- Implementing classes should generally override this method and keep the default implementation of the other overloads, which will delegate to this method (after proper conversions).
-
and
- Specified by:
andin interfaceDoublePredicate- Implementation Notes:
- Composing with a JDK type-specific predicate will be slightly less efficient than using a type-specific predicate, as the argument will have to be widened at each call.
-
and
Deprecated.Please use the corresponding type-specific method instead. -
negate
- Specified by:
negatein interfaceDoublePredicate- Specified by:
negatein interfacePredicate<Float>
-
or
Returns a composed type-specific predicate that represents a short-circuiting logical OR of this type-specific predicate and another.- Parameters:
other- a predicate that will be logically-ORed with this predicate.- Returns:
- a composed predicate that represents the short-circuiting logical OR
of this predicate and the
otherpredicate. - See Also:
Predicate.or(java.util.function.Predicate<? super T>)- API Notes:
- Implementing classes should generally override this method and keep the default implementation of the other overloads, which will delegate to this method (after proper conversions).
-
or
- Specified by:
orin interfaceDoublePredicate- Implementation Notes:
- Composing with a JDK type-specific predicate will be slightly less efficient than using a type-specific predicate, as the argument will have to be widened at each call.
-
or
Deprecated.Please use the corresponding type-specific method instead.
-