U
- the type of the second argument the operation@FunctionalInterface public interface ByteObjConsumer<U>
byte
-valued and
an object-valued argument,
and returns no result. This is
the (byte,
reference)
specialization of BiConsumer
.
Unlike most other functional interfaces, ByteObjConsumer
is
expected to operate via side-effects.BiConsumer
Modifier and Type | Method and Description |
---|---|
void |
accept(byte a,
U b)
Performs this operation on the given arguments.
|
void accept(byte a, U b)
a
- the first input argumentb
- the second input argument