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