com.koloboke.function
Interface FloatByteConsumer
public interface FloatByteConsumer
Represents an operation that accepts
a float
-valued and
a byte
-valued argument,
and returns no result. This is
the (float,
byte)
specialization of BiConsumer
.
Unlike most other functional interfaces, FloatByteConsumer
is
expected to operate via side-effects.
- See Also:
BiConsumer
Method Summary |
void |
accept(float a,
byte b)
Performs this operation on the given arguments. |
accept
void accept(float a,
byte b)
- Performs this operation on the given arguments.
- Parameters:
a
- the first input argumentb
- the second input argument