Package civitas.celestis.util.function
Interface FloatPredicate
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A function which takes one
float as its input, and returns one boolean.-
Method Summary
-
Method Details
-
test
boolean test(float value) Tests a value with this predicate.- Parameters:
value- The value of which to test- Returns:
- The return value of this function
-