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