T - the type of the first argument to the operation@FunctionalInterface public interface ObjFloatConsumer<T>
float-valued argument,
and returns no result. This is
the (reference,
float) specialization of BiConsumer.
Unlike most other functional interfaces, ObjFloatConsumer is
expected to operate via side-effects.BiConsumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(T a,
float b)
Performs this operation on the given arguments.
|
void accept(T a, float b)
a - the first input argumentb - the second input argument