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