com.koloboke.function
Interface IntDoubleConsumer


public interface IntDoubleConsumer

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

See Also:
BiConsumer

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

Method Detail

accept

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

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