com.koloboke.function
Interface DoubleDoubleConsumer


public interface DoubleDoubleConsumer

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

See Also:
BiConsumer

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

Method Detail

accept

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

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