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