com.koloboke.function
Interface FloatFloatConsumer
public interface FloatFloatConsumer
Represents an operation that accepts
two 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.
- See Also:
BiConsumer
Method Summary |
void |
accept(float a,
float b)
Performs this operation on the given arguments. |
accept
void accept(float a,
float b)
- Performs this operation on the given arguments.
- Parameters:
a
- the first input argumentb
- the second input argument