com.koloboke.function
Interface FloatDoubleConsumer
public interface FloatDoubleConsumer
Represents an operation that accepts
a float
-valued and
a double
-valued argument,
and returns no result. This is
the (float,
double)
specialization of BiConsumer
.
Unlike most other functional interfaces, FloatDoubleConsumer
is
expected to operate via side-effects.
- See Also:
BiConsumer
Method Summary |
void |
accept(float a,
double b)
Performs this operation on the given arguments. |
accept
void accept(float a,
double b)
- Performs this operation on the given arguments.
- Parameters:
a
- the first input argumentb
- the second input argument