@FunctionalInterface public interface FloatFloatConsumer
float
-valued arguments
and returns no result. This is
the (float,
float)
specialization of BiConsumer
.
Unlike most other functional interfaces, FloatFloatConsumer
is
expected to operate via side-effects.BiConsumer
Modifier and Type | Method and Description |
---|---|
void |
accept(float a,
float b)
Performs this operation on the given arguments.
|