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