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