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. |
accept
void accept(double a,
double b)
- Performs this operation on the given arguments.
- Parameters:
a - the first input argumentb - the second input argument