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