Package civitas.celestis.util.function
Interface FloatConsumer
- 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 parameter, and returns no value.-
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(float value) Accepts this consumer, executing its contents.
-
Method Details
-
accept
void accept(float value) Accepts this consumer, executing its contents.- Parameters:
value- The value of which to accept this consumer as
-