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