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