com.koloboke.function
Interface DoubleObjConsumer<U>

Type Parameters:
U - the type of the second argument the operation

public interface DoubleObjConsumer<U>

Represents an operation that accepts a double-valued and an object-valued argument, and returns no result. This is the (double, reference) specialization of BiConsumer. Unlike most other functional interfaces, DoubleObjConsumer is expected to operate via side-effects.

See Also:
BiConsumer

Method Summary
 void accept(double a, U b)
          Performs this operation on the given arguments.
 

Method Detail

accept

void accept(double a,
            U b)
Performs this operation on the given arguments.

Parameters:
a - the first input argument
b - the second input argument